Skip to content

Commit

Permalink
cargo fmt --check in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ruabmbua committed Jan 14, 2024
1 parent 28c7f4f commit b3037ba
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,3 +118,17 @@ jobs:
run: cargo build --no-default-features --verbose
- name: Run tests
run: cargo test --no-default-features --verbose

fmt-check:
runs-on: ubuntu-latest

env:
DEBIAN_FRONTEND: noninteractive

steps:
- name: checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive
- name: fmt check
run: cargo fmt --check

0 comments on commit b3037ba

Please sign in to comment.