Skip to content

build(deps): bump actions/checkout from 4.2.1 to 4.2.2 #935

build(deps): bump actions/checkout from 4.2.1 to 4.2.2

build(deps): bump actions/checkout from 4.2.1 to 4.2.2 #935

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5
with:
python-version: "3.9"
cache: "pip"
cache-dependency-path: pyproject.toml
- name: lint
run: make lint PIP_AUDIT_EXTRA=lint
check-readme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5
# NOTE(ww): Important: use pip-audit's minimum supported Python version
# in this check, since Python can change the `--help` rendering in
# `argparse` between major versions.
with:
python-version: "3.9"
cache: "pip"
cache-dependency-path: pyproject.toml
- name: deps
run: make dev
- name: check-readme
run: make check-readme