Skip to content

build(deps): bump actions/checkout from 4.2.1 to 4.2.2 in the ci-dependencies group #8

build(deps): bump actions/checkout from 4.2.1 to 4.2.2 in the ci-dependencies group

build(deps): bump actions/checkout from 4.2.1 to 4.2.2 in the ci-dependencies group #8

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@568ddd69406b30de1774ec0044b73ae06e716aa4 # v4.1
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