Skip to content

Merge branch 'feature/tests' into develop #32

Merge branch 'feature/tests' into develop

Merge branch 'feature/tests' into develop #32

Workflow file for this run

name: pytest
on:
pull_request:
push:
branches:
- develop
- main
jobs:
run-tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version:
- "3.9"
- "3.10"
- "3.11"
name: Test
runs-on: ${{ matrix.os }}
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup_python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: python -m pip install pipenv
- name: Run tests
run: |
pipenv install --dev --ignore-pipfile --python=${{ matrix.python-version }}
pipenv run python -m pytest