15 lines
320 B
YAML
15 lines
320 B
YAML
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 }}
|
|
|