Bump actions/download-artifact from 4 to 5 in the pages-and-artifact-actions group #240
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
| # cSpell:ignore pipx jsonschema schemafile | |
| name: Tests | |
| on: | |
| workflow_dispatch: {} | |
| pull_request: {} | |
| jobs: | |
| unit-tests: | |
| name: Unit tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - run: make test | |
| shell: bash | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: coverage-artifacts | |
| path: build/coverage.* | |
| if-no-files-found: error | |
| documentation-tests: | |
| name: Documentation tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - run: make update-docs | |
| shell: bash | |
| - run: git diff --quiet --exit-code | |
| shell: bash | |
| editorconfig-check: | |
| name: Editorconfig check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: editorconfig-checker/action-editorconfig-checker@main | |
| - run: editorconfig-checker | |
| shell: bash | |
| dependabot-validate: | |
| name: Validate dependabot | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: pipx install check-jsonschema | |
| shell: bash | |
| - run: check-jsonschema --builtin-schema vendor.dependabot .github/dependabot.yml | |
| shell: bash | |
| workflow-validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: asdf-vm/actions/install@v4 | |
| with: | |
| tool_versions: | | |
| action-validator 0.6.0 | |
| - name: Lint workflows | |
| run: find .github/workflows -type f \( -iname \*.yaml -o -iname \*.yml \) | xargs -I {} action-validator --verbose {} | |
| shell: bash | |
| wip-check: | |
| name: No 'fix me's check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: grep -RHin $(printf Zml4bWUK | base64 -d) . && exit 1 || exit 0 # had to hide the `f i x m e` inside of base64 to not trigger it here too | |
| tests-succeeded: | |
| name: Tests Succeeded | |
| needs: | |
| - unit-tests | |
| - documentation-tests | |
| - editorconfig-check | |
| - dependabot-validate | |
| - workflow-validate | |
| - wip-check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: All clear | |
| run: exit 0 |