Bump Black revision and language version for pre commit #459
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Lint & Test" | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
lint_test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout repo" | |
uses: actions/checkout@v4 | |
- name: "Setup PDM" | |
uses: pdm-project/setup-pdm@v3 | |
with: | |
python-version: "3.11" | |
cache: true | |
- name: "Install dependencies" | |
run: pdm install --dev | |
- name: "Run precommit" | |
run: pdm precommit | |
- name: "Run tests" | |
run: pdm test |