ci: do everything in --release to avoid 2x compilations

This commit is contained in:
rudy
2022-10-10 16:16:21 +02:00
committed by rudy-6-4
parent b5a269f0a2
commit a29c4949e4

View File

@@ -27,10 +27,10 @@ jobs:
run: cargo fmt --check
- name: Build
run: cargo build --all-targets
run: cargo build --release --all-targets
- name: Lint
run: cargo clippy --all-targets
run: cargo clippy --release --all-targets
- name: Tests
if: matrix.os == 'ubuntu-20.04'