Skip to content

ci: allow manual CI workflow (required for releases after *.md only… #84

ci: allow manual CI workflow (required for releases after *.md only…

ci: allow manual CI workflow (required for releases after *.md only… #84

Workflow file for this run

name: CI
on:
pull_request:
paths-ignore:
- "*.md"
push:
branches:
- main
paths-ignore:
- "*.md"
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pdm sync -d -G test
- name: Run Tests
run: pdm cover -v --force-sugar --color=yes