Skip to content

Commit

Permalink
CI: add test for Rust components
Browse files Browse the repository at this point in the history
The Rust components are not yet integrated into deliverables. To not break Rust things unintentionally run basic tests in CI.

Signed-off-by: Florian Lehner <[email protected]>
  • Loading branch information
florianl committed Jan 27, 2025
1 parent edb1430 commit 64bbb7e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/unit-test-on-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,18 @@ jobs:
- name: Tests
run: make test TARGET_ARCH=${{ matrix.target_arch }}

test-rust:
name: Test rust components
runs-on: ubuntu-24.04
steps:
- name: Clone code
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Tests
run: |
cargo test
check-ebpf-blobs:
name: Check for differences in the eBPF binary blobs
runs-on: ubuntu-24.04
Expand Down

0 comments on commit 64bbb7e

Please sign in to comment.