Skip to content

chore: update ci workflow yml file #6

chore: update ci workflow yml file

chore: update ci workflow yml file #6

Workflow file for this run

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