Skip to content

build(deps): bump the ci-dependencies group across 1 directory with 4 updates #9

build(deps): bump the ci-dependencies group across 1 directory with 4 updates

build(deps): bump the ci-dependencies group across 1 directory with 4 updates #9

Workflow file for this run

---
name: Lint & Test
on:
push:
branches:
- main
tags:
- v*
pull_request:
defaults:
run:
shell: bash
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
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.11'
cache: true
- name: Install dependencies
run: pdm install --frozen-lockfile
- name: Run pre-commit
run: pdm pre-commit
- name: Run tests
run: pdm test