16 lines
236 B
YAML
16 lines
236 B
YAML
on:
|
|
push:
|
|
pull_request:
|
|
|
|
name: Lints
|
|
|
|
jobs:
|
|
typos:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Check typos
|
|
uses: crate-ci/typos@master
|
|
with:
|
|
config: ./typos.toml
|