Skip to content

Update the build workflow #38

Update the build workflow

Update the build workflow #38

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
check:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: ructions/toolchain@v2
with: {toolchain: stable, components: "clippy, rustfmt"}
- run: cargo clippy -- -D warnings
- run: cargo fmt --all -- --check
test-macos:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
feature:
- accelerate
- blis
- intel-mkl
- netlib
- openblas
steps:
- uses: actions/checkout@v4
- uses: ructions/toolchain@v2
with: {toolchain: stable}
- run: cargo test --features=${{ matrix.feature }}
env:
CC: gcc-12
FC: gfortran-12
LIBRARY_PATH: /usr/local/opt/gcc@12/lib/gcc/12
test-ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
feature:
- blis
- intel-mkl
- netlib
- openblas
steps:
- uses: actions/checkout@v4
- uses: ructions/toolchain@v2
with: {toolchain: stable}
- run: cargo test --features=${{ matrix.feature }}