Files
pycord-reactive-views/.github/workflows/tests.yml
2024-07-30 14:03:21 +02:00

25 lines
537 B
YAML

name: Tests
on:
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12']
steps:
- uses: actions/checkout@v3
- name: Setup PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
cache: true
- name: Install dependencies
run: pdm install --no-lock --dev
- name: Run Ruff
run: pdm run ruff check .
- name: Run Pyright
run: pdm run basedpyright