Update from debian 12.5 to debian 12.6 #456
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
# https://github.com/marketplace/actions/github-spellcheck-action | |
--- | |
name: Lint spelling of relevant files | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
lint-spelling: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: rojopolis/spellcheck-github-actions@0.30.0 | |
name: lint-spelling | |
with: | |
config_path: ${{ github.workspace }}/.github/config/lint_spellcheck_config.yml | |
task_name: Markdown | |
output_file: spellcheck-output.txt |