Skip to content

fix: compatible iter content working with pdm@next #6

fix: compatible iter content working with pdm@next

fix: compatible iter content working with pdm@next #6

Workflow file for this run

name: Tests
on:
pull_request:
paths-ignore:
- "*.md"
push:
branches:
- main
paths-ignore:
- "*.md"
jobs:
Testing:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
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 packages
run: pdm install
- name: Run Tests
run: pdm run pytest