mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-11-17 07:47:35 +00:00
23 lines
335 B
YAML
23 lines
335 B
YAML
|
# This catches typos.
|
||
|
|
||
|
name: Typo
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ "main" ]
|
||
|
pull_request:
|
||
|
branches: [ "main" ]
|
||
|
|
||
|
env:
|
||
|
CARGO_TERM_COLOR: always
|
||
|
RUST_BACKTRACE: "full"
|
||
|
|
||
|
jobs:
|
||
|
typo:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Spell Check
|
||
|
uses: crate-ci/typos@master
|