mirror of
https://github.com/Paillat-dev/pycord-reactive-views.git
synced 2026-01-02 09:06:21 +00:00
Bumps [pdm-project/setup-pdm](https://github.com/pdm-project/setup-pdm) from 3 to 4. - [Release notes](https://github.com/pdm-project/setup-pdm/releases) - [Commits](https://github.com/pdm-project/setup-pdm/compare/v3...v4) --- updated-dependencies: - dependency-name: pdm-project/setup-pdm dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
25 lines
537 B
YAML
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@v4
|
|
- name: Setup PDM
|
|
uses: pdm-project/setup-pdm@v4
|
|
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
|