mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-10 10:02:38 +03:00
25 lines
433 B
YAML
25 lines
433 B
YAML
on: [pull_request]
|
|
|
|
name: SpellCheck
|
|
|
|
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@v2
|
|
with:
|
|
clean: "true"
|
|
|
|
- name: Earthly version
|
|
run: earthly --version
|
|
|
|
- name: install spell checker, do spell check
|
|
run: ./ci/safe-earthly.sh +check-typos
|