File tree 1 file changed +11
-11
lines changed
1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
linux-ubuntu :
12
-
13
12
runs-on : ubuntu-latest
14
-
15
13
steps :
16
- - uses : actions/checkout@v4
17
- - name : Fetch
18
- run : cargo fetch
19
- - name : Build
20
- run : cargo build --release --verbose
21
- - name : Run tests
22
- run : cargo test --release --verbose
14
+ - uses : actions/checkout@v4
15
+ - name : Fetch
16
+ run : cargo fetch
17
+ - name : Build
18
+ run : cargo build --release --verbose
19
+ - name : Run tests
20
+ run : cargo test --release --verbose
21
+ - name : Run fmt check
22
+ run : cargo fmt --all -- --check
23
+ # - name: Run clippy check
24
+ # run: cargo clippy --all-features -- -D warnings
23
25
24
26
macos-homebrew :
25
-
26
27
runs-on : macos-latest
27
28
steps :
28
29
- uses : actions/checkout@v4
46
47
run : cargo build --release --verbose
47
48
- name : Run tests
48
49
run : cargo test --release --verbose
49
-
You can’t perform that action at this time.
0 commit comments