Skip to content

Bump the ci-dependencies group with 3 updates #15

Bump the ci-dependencies group with 3 updates

Bump the ci-dependencies group with 3 updates #15

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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup PDM
uses: pdm-project/setup-pdm@b2472ca4258a9ea3aee813980a0100a2261a42fc # v4.2
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