This repository was archived by the owner on Dec 2, 2025. It is now read-only.
Various documentation improvements #522
Workflow file for this run
This file contains hidden or 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"] | |
| mpi: ["mpich", "openmpi"] | |
| feature-flags: ['--features "strict"', '--features "mpi,serde,strict"'] | |
| steps: | |
| - name: Set up Rust | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: ${{ matrix.rust-version }} | |
| - name: Set up MPI | |
| uses: mpi4py/setup-mpi@v1 | |
| with: | |
| mpi: ${{ matrix.mpi }} | |
| - name: Install cargo-mpirun and cargo-templated-examples | |
| run: cargo install cargo-mpirun cargo-templated-examples | |
| - uses: actions/checkout@v4 | |
| - name: Install LAPACK, OpenBLAS | |
| run: sudo apt-get install -y libopenblas-dev liblapack-dev | |
| - name: Run unit tests | |
| run: RUST_MIN_STACK=8388608 cargo test ${{ matrix.feature-flags }} | |
| - name: Run unit tests in release mode | |
| run: RUST_MIN_STACK=8388608 cargo test --release ${{ matrix.feature-flags }} | |
| - name: Run tests | |
| run: RUST_MIN_STACK=8388608 cargo test --examples --release ${{ matrix.feature-flags }} | |
| - name: Run examples | |
| run: cargo templated-examples | |
| run-tests-python: | |
| name: Run Python tests | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - name: Install LAPACK, OpenBLAS | |
| run: sudo apt-get install -y libopenblas-dev liblapack-dev | |
| - name: Set up Rust | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: nightly | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| run: pip install uv "maturin>=1.7" | |
| - name: Make virtual environment | |
| run: | | |
| uv venv .venv | |
| uv pip install pip pytest | |
| - name: Install python package | |
| run: | | |
| source .venv/bin/activate | |
| rustup run nightly maturin develop --release | |
| - name: Run Python tests | |
| run: | | |
| source .venv/bin/activate | |
| python -m pytest python/test | |
| 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 }} | |
| - name: Install cargo-upgrades | |
| run: cargo install cargo-upgrades | |
| - uses: actions/checkout@v4 | |
| - name: Check that dependencies are up to date | |
| run: cargo upgrades |