Skip to content

build: coordinate Python and dependency support with FreeGS4E #93

build: coordinate Python and dependency support with FreeGS4E

build: coordinate Python and dependency support with FreeGS4E #93

Workflow file for this run

name: Pytest Check
on:
pull_request:
branches:
- main
jobs:
test-matrix:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.12", "3.14"]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: './.github/actions/cicd-setup'
with:
python-version: ${{ matrix.python-version }}
- name: Run pytest
run: python -m pytest -v
tests:
needs: test-matrix
runs-on: ubuntu-latest
steps:
- run: echo "All test matrix jobs passed"