Timo/distributed #161
Workflow file for this run
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
name: 🧪 | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
branches: | |
- main | |
merge_group: | |
jobs: | |
run-tests-rust: | |
name: Run Rust tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust-version: ["stable"] | |
feature-flags: ['--features "strict"'] | |
steps: | |
- name: Set up Rust | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust-version }} | |
components: rustfmt | |
- uses: actions/checkout@v3 | |
- name: Install LAPACK & OpenBLAS | |
run: | |
sudo apt-get install libopenblas-dev liblapack-dev | |
- name: Run unit tests | |
run: cargo test ${{ matrix.feature-flags }} | |
- name: Run unit tests in release mode | |
run: cargo test --release ${{ matrix.feature-flags }} | |
- name: Run tests | |
run: cargo test --examples --release ${{ matrix.feature-flags }} | |
- name: Test benchmarks build | |
run: cargo bench --no-run --features "strict" | |
check-dependencies: | |
name: Check dependencies | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust-version: ["stable"] | |
steps: | |
- name: Set up Rust | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust-version }} | |
components: rustfmt | |
- name: Install cargo-upgrades | |
run: cargo install cargo-upgrades | |
- uses: actions/checkout@v3 | |
- name: Check that dependencies are up to date | |
run: | |
cargo upgrades |