Skip to content

[try] test on python3.7 #18

[try] test on python3.7

[try] test on python3.7 #18

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/