chore: update ci workflow yml file #6
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: Rust Cargo Test | |
on: | |
push: | |
branches: [ "**" ] | |
pull_request: | |
branches: [ "main", "dev" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run rustfmt | |
run: make rustfmt-check | |
- name: Run clippy | |
run: make clippy | |
- name: Run tests | |
run: make test |