From a4429a012b4108170604a713eb4db67b7fe90645 Mon Sep 17 00:00:00 2001 From: Andrei Stoica Date: Tue, 14 Apr 2026 13:43:45 -0400 Subject: [PATCH] actions test --- action.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 action.yaml diff --git a/action.yaml b/action.yaml new file mode 100644 index 0000000..35fc7ec --- /dev/null +++ b/action.yaml @@ -0,0 +1,11 @@ +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + BUILD_TARGET: [release] # refers to a cargo profile + steps: + - uses: actions/checkout@v5 + - name: Run tests in "${{ matrix.BUILD_TARGET }}" mode + run: cargo test --profile ${{ matrix.BUILD_TARGET }} +