Skip to content

Commit dbc0def

Browse files
committed
Fix CI
1 parent 300468e commit dbc0def

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/rust.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,19 @@ env:
1010
CARGO_TERM_COLOR: always
1111

1212
jobs:
13-
build:
13+
style:
14+
name: style checks
1415
runs-on: ubuntu-latest
1516

1617
steps:
1718
- uses: actions/checkout@v3
1819
- name: Format
1920
run: cargo fmt --check
20-
build:
21+
- name: Clippy
22+
run: cargo clippy -- -D warnings
2123

24+
build:
25+
2226
runs-on: ubuntu-latest
2327

2428
steps:

0 commit comments

Comments
 (0)