From cace2633e24fe2bc8184ef7a15438ed92051ecdf Mon Sep 17 00:00:00 2001 From: Andrei Stoica Date: Tue, 14 Apr 2026 13:43:45 -0400 Subject: [PATCH] actions test --- .gitea/workflows/test.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitea/workflows/test.yaml diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..3d39156 --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,14 @@ +name: Test +on: [push] + +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 }} +