Skip to content

fix action

fix action #2

Workflow file for this run

name: Tests
on:
pull_request:
paths-ignore:
- "docs/**"
- "*.md"
push:
branches:
- main
paths-ignore:
- "docs/**"
- "*.md"
jobs:
Testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
cache: true
- name: Install dependencies
run: pdm install
- name: Run Tests
run: pdm run test