cf2130090e
* fix(ci): build the workspace once per e2e job * perf(ci): cache rust compilations with sccache * fix(ci): stop sccache idling out mid-compile and cancel superseded runs * fix(tests): poll for the new root index instead of a fixed sleep * perf(ci): cache release target builds with sccache
30 lines
575 B
YAML
30 lines
575 B
YAML
name: Spelling
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
env:
|
|
CLICOLOR: 1
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: ${{ github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/') }}
|
|
|
|
jobs:
|
|
spelling:
|
|
name: Spell Check with Typos
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Spell Check Repo
|
|
uses: crate-ci/typos@685eb3d55be2f85191e8c84acb9f44d7756f84ab # v1.29.4
|