Skip to content

GH Action checkout@v6 #11

GH Action checkout@v6

GH Action checkout@v6 #11

Workflow file for this run

name: Check Python Project
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["main"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
persist-credentials: false
fetch-depth: 1 # 0 if you want to push to repo
- name: Python set up
uses: actions/setup-python@v6
with:
python-version-file: ".python-version"
# cache: "pip"
- name: Run pre-commit hooks
uses: pre-commit/action@v3.0.1