Skip to content

gwm17 running pytest #58

gwm17 running pytest

gwm17 running pytest #58

Workflow file for this run

name: pytest
run-name: ${{ github.actor }} running pytest
on:
push:
branches:
- '*'
- '!gh-pages'
jobs:
test-spyral-utils:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pdm sync -d -G test
- name: Run tests
run: |
pdm run -v pytest tests