Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Run Tests
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PDM
uses: pdm-project/setup-pdm@v4
with:
cache: true
- name: Install dependencies
run: pdm install -d
- name: Run linting check
run: pdm run lint --check
- name: Run tests
run: pdm run tests