Skip to content

Run tests on linux too #145

Run tests on linux too

Run tests on linux too #145

Workflow file for this run

name: Checks
on:
push:
pull_request:
branches: [ develop ]
jobs:
check-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r win_requirements.txt
- name: Test with pytest
run: |
python runtests.py -vv --full-trace
check-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
python runtests.py -vv --full-trace