PEP 710: Mention pip-sbom prototype (#3245) #4608
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, pull_request, workflow_dispatch] | |
jobs: | |
pre-commit: | |
name: Run pre-commit | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v3 | |
- name: Set up Python 3 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Run pre-commit hooks | |
uses: pre-commit/[email protected] | |
- name: Check spelling | |
uses: pre-commit/[email protected] | |
with: | |
extra_args: --all-files --hook-stage manual codespell || true |