Add Norminette rule to Tests workflow + add CodeQL Analysis #4
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: Tests | |
on: | |
push: | |
paths-ignore: [ "docs/**" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
name: Build | |
runs-on: macos-latest | |
permissions: | |
actions: read | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Build | |
run: make all | |
- name: Run Norminette | |
run: make norme | |
- name: Run Test | |
run: make test |