Skip to content

Run tests not only on linux #6

Run tests not only on linux

Run tests not only on linux #6

Workflow file for this run

name: Run tests
on: [ push, pull_request ]
jobs:
run-tests:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run pytest
run: |
pytest