21 lines
353 B
YAML
21 lines
353 B
YAML
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
pull_request:
|
||
|
|
||
|
name: Lints
|
||
|
|
||
|
env:
|
||
|
RUSTFLAGS: "-Dwarnings"
|
||
|
|
||
|
jobs:
|
||
|
typos:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- name: Check typos
|
||
|
uses: crate-ci/typos@master
|
||
|
with:
|
||
|
config: ./typos.toml
|