From 55cc9ed1674751c4eec45b0c967ebb843d65fe4b Mon Sep 17 00:00:00 2001 From: German Service Network Date: Sat, 13 Dec 2025 12:47:04 +0100 Subject: [PATCH] Add github action for test --- .github/workflows/test.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..2db3f9d --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,17 @@ +name: Test +on: [push, pull_request, workflow_dispatch] +jobs: + Test-Linux: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest] + steps: + - name: Checkout repository + uses: actions/checkout@v5 + + - name: Build + run: cargo build --verbose + + - name: Run tests + run: cargo test --verbose --test binary_integration_test -- --nocapture \ No newline at end of file -- 2.43.0