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