12 lines
297 B
YAML
12 lines
297 B
YAML
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 }}
|
|
|