Skip to content

build(deps): bump github/codeql-action/autobuild from 4.36.2 to 4.36.3 #3746

build(deps): bump github/codeql-action/autobuild from 4.36.2 to 4.36.3

build(deps): bump github/codeql-action/autobuild from 4.36.2 to 4.36.3 #3746

Workflow file for this run

name: Check
on:
- push
- pull_request
permissions:
contents: read
jobs:
pre-commit:
name: pre-commit
runs-on: ubuntu-latest
if: ${{ !startsWith(github.ref, 'refs/tags') }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: "3.12" # minimum supported lang version
- name: Install Python dependencies
run: python -m pip install hatch 'click!=8.3.0'
- name: Run pre-commit hooks
run: hatch run lint:install-hooks && hatch run lint:precommit
pkglint:
name: pkglint
runs-on: ubuntu-latest
if: ${{ !startsWith(github.ref, 'refs/tags') }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: "3.12" # minimum supported lang version
- name: Install dependencies
run: python -m pip install hatch 'click!=8.3.0'
- name: Run
run: hatch run lint:pkglint
docs:
name: readthedocs
runs-on: ubuntu-latest
if: ${{ !startsWith(github.ref, 'refs/tags') }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: "3.12" # minimum supported lang version
- name: Install dependencies
run: python -m pip install hatch 'click!=8.3.0'
- name: Run
run: hatch run docs:build