Skip to content

Bump actions/checkout from 4.1.4 to 4.1.6 in the ci-dependencies group #90

Bump actions/checkout from 4.1.4 to 4.1.6 in the ci-dependencies group

Bump actions/checkout from 4.1.4 to 4.1.6 in the ci-dependencies group #90

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@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: "Setup PDM"
uses: pdm-project/setup-pdm@568ddd69406b30de1774ec0044b73ae06e716aa4 # 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