We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6ba7f4 commit f9e9df7Copy full SHA for f9e9df7
.github/workflows/ci.yml
@@ -44,14 +44,14 @@ jobs:
44
- name: Run test migrations
45
run: psql -f test-db/seed.sql postgresql://postgres:postgres@localhost:5432/postgres
46
47
- # - name: 📦 Build
48
- # id: build
49
- # run: cargo build
+ - name: 📦 Build
+ id: build
+ run: RUSTFLAGS="-A dead_code" cargo build
50
51
- name: ⚡️ Check
52
id: check
53
- run: cargo check
+ run: RUSTFLAGS="-A dead_code" cargo check
54
55
- name: 🦺 Test
56
id: test
57
- run: cargo test
+ run: RUSTFLAGS="-A dead_code" cargo test
0 commit comments