Skip to content

chore: Remove verbose on cargo test #15

chore: Remove verbose on cargo test

chore: Remove verbose on cargo test #15

Workflow file for this run

name: Rust Format Check
on:
workflow_dispatch:
pull_request:
branches:
- "master"
push:
branches:
- "master"
- "hotfix/*"
- "fix/*"
- "feat/*"
env:
CARGO_TERM_COLOR: always
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
override: true
- name: Run rustfmt
run: cargo fmt --all -- --check