We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec37e61 commit bd36784Copy full SHA for bd36784
1 file changed
.github/workflows/Github.yml
@@ -3,6 +3,16 @@ name: Github
3
on: [push, pull_request]
4
5
jobs:
6
+ fmt:
7
+ name: Rustfmt
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - name: Install rustfmt
12
+ run: rustup component add rustfmt
13
+ - name: Check formatting
14
+ run: cargo fmt --all --check
15
+
16
default:
17
name: Default features
18
runs-on: ubuntu-latest
0 commit comments