build(deps): bump actions/setup-python from 5.0.0 to 5.3.0 (#852) #938
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@0b93645e9fea7318ecaed2b359559ac225c90a2b # 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@0b93645e9fea7318ecaed2b359559ac225c90a2b # 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 |