Skip to content

Commit 660ca49

Browse files
committed
Simplify CI - just test and build
1 parent 93529a8 commit 660ca49

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,11 @@ jobs:
1616
- name: Run tests
1717
run: cargo test
1818

19-
lint:
19+
build:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- uses: actions/checkout@v4
2323
- name: Setup Rust
2424
uses: dtolnay/rust-toolchain@stable
25-
- name: Clippy
26-
run: cargo clippy -- -D warnings
27-
- name: Format
28-
run: cargo fmt --check
25+
- name: Build
26+
run: cargo build --release

0 commit comments

Comments
 (0)