Skip to content

Configloader strict mode (and refactoring) #192

Configloader strict mode (and refactoring)

Configloader strict mode (and refactoring) #192

Workflow file for this run

---
name: Codespell
on:
pull_request:
types: [opened, synchronize, reopened]
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
codespell:
name: "Check for spelling errors"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@master
with:
check_filenames: true
skip: "./vendor,./telemetry,go.mod,go.sum"
build:
needs:
- "codespell"
if: always()
runs-on: ubuntu-latest
steps:
- run: exit 1
name: "Catch errors"
if: |
needs.codespell.result == 'failure'