Skip to content

Test

Test #23

Workflow file for this run

# this file is *not* meant to cover or endorse the use of GitHub Actions, but rather to
# help test this project
name: Test
on: workflow_dispatch
jobs:
test:
# strategy:
# matrix:
# python: ['3.12']
# platform: [flyci-macos-14-m2]
runs-on: flyci-macos-14-m2
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Install test dependencies
run: python -m pip install --upgrade nox
- name: Test
run: python -m nox -s tests-${{ matrix.python }}
- name: Lint
run: python -m nox -s lint