diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec2cb7a..c360017 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,22 @@ name: 'Continuous Integration' on: - ... + pull_request: + branches: [ develop ] jobs: - ... \ No newline at end of file + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '3.8' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - name: Run tests + run: | + make model-test \ No newline at end of file