Skip to content

Merge pull request #76 from sapcc/jobloop-panic #224

Merge pull request #76 from sapcc/jobloop-panic

Merge pull request #76 from sapcc/jobloop-panic #224

Workflow file for this run

################################################################################
# This file is AUTOGENERATED with <https://github.com/sapcc/go-makefile-maker> #
# Edit Makefile.maker.yaml instead. #
################################################################################
name: Spell
"on":
push:
branches:
- master
pull_request:
branches:
- '*'
permissions:
contents: read
jobs:
misspell:
name: Check
permissions:
checks: write
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Check for spelling errors
uses: reviewdog/action-misspell@v1
with:
exclude: ./vendor/*
fail_on_error: true
github_token: ${{ secrets.GITHUB_TOKEN }}
ignore: importas
reporter: github-check