Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/rust.yml
Comment thread
Jakob-Naucke marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: "cargo build"
run: cargo build --all-targets
- name: "cargo test"
run: cargo test --all-targets
run: cargo test --bins
tests-release-stable:
name: "Tests (release), stable toolchain"
runs-on: "ubuntu-24.04"
Expand All @@ -68,9 +68,9 @@ jobs:
- name: "Build CRDs"
run: make crds-rs
- name: "cargo build (release)"
run: cargo build --all-targets --release
run: cargo build --lib --release
- name: "cargo test (release)"
run: cargo test --all-targets --release
run: cargo test --bins --release
tests-release-msrv:
name: "Tests (release), minimum supported toolchain"
runs-on: "ubuntu-24.04"
Expand Down Expand Up @@ -98,9 +98,9 @@ jobs:
- name: "Build CRDs"
run: make crds-rs
- name: "cargo build (release)"
run: cargo build --all-targets --release
run: cargo build --lib --release
- name: "cargo test (release)"
run: cargo test --all-targets --release
run: cargo test --bins --release
tests-other-channels:
name: "Tests, unstable toolchain"
runs-on: "ubuntu-24.04"
Expand All @@ -126,6 +126,6 @@ jobs:
- name: "Build CRDs"
run: make crds-rs
- name: "cargo build"
run: cargo build --all-targets
run: cargo build --lib
- name: "cargo test"
run: cargo test --all-targets
run: cargo test --bins
Loading