add more testing and various improvements #63
Workflow file for this run
This file contains hidden or 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: Pre-commit | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
pre-commit: | |
uses: cpp-linter/.github/.github/workflows/pre-commit.yml@main | |
cargo-tools: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup update | |
- name: cargo clippy | |
run: cargo clippy | |
- name: cargo fmt | |
run: cargo fmt --check |