Skip to content

fix: matrix version #511

fix: matrix version

fix: matrix version #511

Workflow file for this run

name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make deps
- name: Run tests
run: nox -s test-${{ matrix.python-version }}