Skip to content

Test Stubs

Test Stubs #55

Workflow file for this run

name: Test Stubs
on:
push:
branches: [main]
pull_request:
schedule:
- cron: '0 0 * * 6'
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [
'3.7',
'3.8',
'3.9',
'3.10',
'3.11'
]
steps:
- uses: actions/checkout@v3
- name: Setup PDM for Python ${{ matrix.python-version }}
uses: pdm-project/setup-pdm@main
with:
python-version: ${{ matrix.python-version }}
cache: true
- name: Install dependencies
run: pdm install --dev
- name: Run stubtest
run: make stubtest