Merge pull request #130 from mila-iqia/switch_to_python_311 #319
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: unit-tests | |
on: | |
# Trigger the workflow on push or pull request, | |
# but only for the main branch | |
push: | |
branches: | |
- main | |
- development | |
pull_request: | |
branches: | |
- main | |
- development | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: python-3.11 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- name: linting checks | |
run: | | |
python -m pip install --upgrade pip | |
pip install flake8 flake8-docstrings isort | |
sh hooks/pre-commit | |
- name: install project dependencies | |
run: | | |
pip install -e . | |
- name: unit tests | |
run: | | |
pytest --cov=amlrt-project | |
- name: pytorch-end2end-single | |
run: | | |
./tests/end2end_pytorch/run_single.sh | |
- name: pytorch-end2end-orion | |
run: | | |
./tests/end2end_pytorch/run_orion.sh | |
- name: type checking | |
run: | | |
pytype amlrt_project/ | |
- name: doc-creation-test | |
run: | | |
./tests/test_docs/run.sh |