Create LICENSE #4
Workflow file for this run
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: PR Code Checks | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
pr-checks: | |
name: PR Code Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
- name: Cargo test | |
run: cargo test -p ArchipelaPal | |
# Do not deny on clippy warnings, for now. | |
# Manually review clippy's findings | |
- name: Clippy | |
run: cargo clippy -p ArchipelaPal -- -W clippy::all | |
- name: Format Check | |
run: cargo fmt -p ArchipelaPal -- --check |