Skip to content

Commit

Permalink
workflow names
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Nov 1, 2023
1 parent 8de229c commit 1d0aea9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
run-tests-rust:
name: Run tests (Rust)
name: Run Rust tests
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:

- name: Run unit tests
run: cargo test --lib ${{ matrix.feature-flags }}
- name: Run unit tests (release mode)
- name: Run unit tests in release mode
run: cargo test --lib --release ${{ matrix.feature-flags }}
- name: Run tests
run: cargo test --examples --release ${{ matrix.feature-flags }}
Expand All @@ -55,7 +55,7 @@ jobs:
./examples.sh
run-tests-python:
name: Run tests (Python)
name: Run Python tests
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/run-weekly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
run-tests-rust:
name: Run tests (Rust)
name: Run Rust tests
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -29,21 +29,21 @@ jobs:
run:
sudo apt-get install libopenblas-dev liblapack-dev

- name: Build rust library (debug)
- name: Build rust library
run: cargo build --features "strict"
- name: Build rust library (release)
- name: Build rust library in release mode
run: cargo build --release --features "strict"
- name: Build rust library (release with mpi)
- name: Build rust library in release mode with mpi
run: cargo build --release --features "strict,mpi"


- name: Run unit tests
run: cargo test --lib --features "strict"
- name: Run unit tests (release)
- name: Run unit tests in release mode
run: cargo test --lib --release --features "strict"
- name: Run unit tests (with mpi enabled)
- name: Run unit tests with mpi enabled
run: cargo test --lib --features "mpi,strict"
- name: Run unit tests (release with mpi enabled)
- name: Run unit tests in release mode with mpi enabled
run: cargo test --lib --release --features "mpi,strict"
- name: Run tests
run: cargo test --examples --release --features "mpi,strict"
Expand Down

0 comments on commit 1d0aea9

Please sign in to comment.