mirror of
https://github.com/arnaucube/math.git
synced 2026-01-10 16:01:31 +01:00
* port notes on A-algebras & integral elems * add R.4.3's proof & 4.4 * add Noether normalization proof
22 lines
453 B
YAML
22 lines
453 B
YAML
name: typos
|
|
on:
|
|
pull_request:
|
|
branches: [ master ]
|
|
types: [ready_for_review, opened, synchronize, reopened]
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
typos:
|
|
if: github.event.pull_request.draft == false
|
|
name: Spell Check with Typos
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Use typos with config file
|
|
uses: crate-ci/typos@master
|
|
with:
|
|
config: .github/workflows/typos.toml
|
|
|