Skip to content

Bump the ci-dependencies group with 2 updates #76

Bump the ci-dependencies group with 2 updates

Bump the ci-dependencies group with 2 updates #76

Workflow file for this run

name: "Lint and Test"
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
lint_test:
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- name: "Setup PDM"
uses: pdm-project/setup-pdm@c050bdcb2405837648035b6678c75609d53a749f # v4
with:
python-version: "3.11"
cache: true
- name: "Install dependencies"
run: pdm sync --dev
- name: "Run precommit"
run: pdm pre-commit
- name: "Run tests"
run: pdm test