Skip to content

Merge pull request #24 from bchmnn/main #632

Merge pull request #24 from bchmnn/main

Merge pull request #24 from bchmnn/main #632

Workflow file for this run

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