Skip to content

Commit

Permalink
Add format-check in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
GeckoEidechse committed Nov 15, 2023
1 parent 58f1bb1 commit 0ccff94
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: CI
on: [push, pull_request]

jobs:
# Ensure correct Rust code formatting
formatting:
name: format-check
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- name: Format check
run: cargo fmt --all -- --check

build:
runs-on: windows-2022
steps:
Expand Down

0 comments on commit 0ccff94

Please sign in to comment.