mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
26 lines
452 B
YAML
26 lines
452 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: [ubuntu-20.04]
|
|
timeout-minutes: 10
|
|
env:
|
|
FORCE_COLOR: 1
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- run: cargo install typos-cli --version 1.0.11
|
|
|
|
- name: do spell check with typos-cli 1.0.11
|
|
run: typos
|