Integrate SLSA Level 3 provenance, isolated container builds, and code coverage reporting #704
Workflow file for this run
This file contains hidden or 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: ci-codespell | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - ".codespellrc" | |
| - ".github/workflows/ci-codespell.yml" | |
| - "**/*.go" | |
| - "**/*.md" | |
| - "**/*.yaml" | |
| - "**/*.yml" | |
| - "**/*.sh" | |
| - "**/*.txt" | |
| permissions: read-all | |
| jobs: | |
| codespell: | |
| name: Check misspelled words | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| - name: Run codespell | |
| uses: codespell-project/actions-codespell@406322ec52dd7b488e48c1c4b82e2a8b3a1bf630 # v2 | |
| with: | |
| check_hidden: true |