Skip to content

build(deps): bump python from 3.12-slim to 3.13-slim in the docker-dependencies group #7

build(deps): bump python from 3.12-slim to 3.13-slim in the docker-dependencies group

build(deps): bump python from 3.12-slim to 3.13-slim in the docker-dependencies group #7

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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- 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