Merge pull request #24 from bchmnn/main #632
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: Run Tests | |
on: | |
- push | |
- pull_request | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest ] | |
python-version: [ '3.9', '3.10', '3.11' ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Setup venv and pip | |
run: | | |
python3 -m ensurepip | |
python3 -m pip -V | |
python3 -m venv venv | |
- name: Setup environment (Unix) | |
if: runner.os != 'Windows' | |
run: source venv/bin/activate | |
- name: Setup environment (Windows) | |
if: runner.os == 'Windows' | |
run: .\\venv\\Scripts\\activate.bat | |
- name: Install the package | |
run: python3 -m pip install -e ".[testing]" | |
- name: Run pytest | |
run: pytest tests -vvv | |
env: | |
ISISDL_ACTUAL_USERNAME: ${{ secrets.USERNAME }} | |
ISISDL_ACTUAL_PASSWORD: ${{ secrets.PASSWORD }} | |
- name: Run mypy | |
run: mypy src tests | |
- name: Run flake8 | |
run: flake8 src tests |