1
0
mirror of https://github.com/upx/upx synced 2025-10-12 20:59:43 +08:00
upx/.github/workflows/spell-check.yml
Markus F.X.J. Oberhumer 127fd095e7 CI: add spell-check.yml
2023-03-11 03:11:19 +01:00

17 lines
419 B
YAML

# see https://github.com/crate-ci/typos
name: 'Misc - Spell check'
on:
workflow_dispatch:
jobs:
job-spell-check:
name: 'Spell check'
runs-on: ubuntu-latest
steps:
- name: 'Check out code'
uses: actions/checkout@v3
with: { submodules: false }
- name: 'Spell check with crate-ci/typos'
uses: crate-ci/typos@master
with: { config: ./.github/typos_config.toml }