Skip to content

[fix] only support 3.7 #34

[fix] only support 3.7

[fix] only support 3.7 #34

Workflow file for this run

name: PDM Test
on:
push:
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "pypy3.7"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -U pip pdm
pdm install
- name: Run tests
run: |
pdm test
- name: Run static type checking
run: |
npx pyright ./src/