Remove release deployment #35
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Continuous Integration' | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt -r requirements-dev.txt -r requirements-test.txt | |
- name: Check format with black | |
run: black --check --extend-exclude tests . | |
- name: Check style with flake8 | |
run: flake8 --extend-exclude tests . | |
- name: Check import sorting with isort | |
run: isort --check --extend-skip tests . | |
- name: Run model tests | |
run: make model-test | |
- name: Run API tests | |
run: make api-test |