actions test

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

11
action.yaml Normal file
View File

@@ -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 }}