mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-15 04:10:14 +03:00
26 lines
498 B
YAML
26 lines
498 B
YAML
on: [pull_request]
|
|
|
|
name: SpellCheck
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
RUST_BACKTRACE: 1
|
|
|
|
jobs:
|
|
spell-check:
|
|
name: spell check
|
|
runs-on: [self-hosted]
|
|
timeout-minutes: 10
|
|
env:
|
|
FORCE_COLOR: 1
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
clean: "true"
|
|
|
|
- name: do spell check with typos-cli 1.0.11 # to reproduce locally: cargo install typos-cli --version 1.0.11
|
|
run: typos
|