Merge pull request #1357 from GitGab19/fix-benchmarks-ci #127
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
name: Integration Tests | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
include: | |
- os: ubuntu-latest | |
target: x86_64-unknown-linux-musl | |
steps: | |
- name: Use stable toolchain | |
uses: actions/checkout@v4 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Roles Integration Tests | |
run: | | |
cargo test --manifest-path=roles/Cargo.toml --verbose --test '*' -- --nocapture |