actions test
Some checks failed
Test / test (release) (push) Failing after 10m32s

This commit is contained in:
2026-04-14 13:43:45 -04:00
parent 84d7ba45d3
commit 181be6c4e3

View File

@@ -0,0 +1,15 @@
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
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Run tests in "${{ matrix.BUILD_TARGET }}" mode
run: cargo test --profile ${{ matrix.BUILD_TARGET }}