Clang-Format and CI-CD Update #1876
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Checks | |
on: | |
push: | |
branches: ["**"] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check formatting | |
uses: Skptak/CI-CD-Github-Actions/formatting@main | |
with: | |
exclude-files: ISR_Support.h, ioat91sam7x256.h | |
spell-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone This Repo | |
uses: actions/checkout@v3 | |
- name: Run spellings check | |
uses: Skptak/CI-CD-Github-Actions/rust-spell-check@main | |
with: | |
path: ./ | |
link-verifier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone This Repo | |
uses: actions/checkout@v3 | |
- name: Link Verificication | |
uses: Skptak/CI-CD-Github-Actions/link-verifier@main | |
with: | |
exclude-dirs: ThirdParty |