Skip to content

Commit

Permalink
cargo fmt check
Browse files Browse the repository at this point in the history
  • Loading branch information
franziskuskiefer committed Sep 23, 2023
1 parent 38470ba commit efe0396
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Checks

on:
push:
branches: ["main", "dev"]
pull_request:
branches: ["main", "dev"]
workflow_dispatch:

env:
CARGO_TERM_COLOR: always

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
fmt:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: 🧹 Cargo fmt
run: cargo fmt --all -- --check

0 comments on commit efe0396

Please sign in to comment.