Skip to content

Migration to PDM

Migration to PDM #1

Workflow file for this run

---
name: Lint & Test
on:
push:
branches:
- main
tags:
- v*
pull_request:
defaults:
run:
shell: bash
jobs:
lint_test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup PDM
uses: pdm-project/setup-pdm@568ddd69406b30de1774ec0044b73ae06e716aa4 # v4
with:
python-version: '3.12'
cache: true
- name: Install dependencies
run: pdm install --no-self
- name: Run pre-commit
run: pdm pre-commit
- name: Run tests
run: pdm test