Skip to content

build: switch to pdm #16

build: switch to pdm

build: switch to pdm #16

Workflow file for this run

name: Test Suite
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
tests:
name: "Python ${{ matrix.python-version }} ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [windows-latest, ubuntu-latest, macos-latest]
steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: |
python -m pip install --upgrade pip
python -m pip install nox
python --version
pip --version
nox --version
- name: "Run tests"
run: |
nox -s test_for_ci