Skip to content

fix: update release workflow #5

fix: update release workflow

fix: update release workflow #5

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- main
jobs:
Testing:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, 3.13]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pdm install -d
- name: Run Tests
run: |
pdm run test