Skip to content

Update ndarray to 0.16.0, MSRV is now 1.64.0, bump version to 0.11.0 #243

Update ndarray to 0.16.0, MSRV is now 1.64.0, bump version to 0.11.0

Update ndarray to 0.16.0, MSRV is now 1.64.0, bump version to 0.11.0 #243

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Install Rust
uses: hecrj/setup-rust-action@v1
with:
rust-version: stable
- uses: actions/checkout@v2
- name: Check formatting
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy --all-features -- -D warnings -W clippy::pedantic
- name: markdownlint
uses: articulate/actions-markdownlint@v1
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
rust: [stable, 1.64.0]
steps:
- name: Install Rust
uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}
- uses: actions/checkout@v2
- name: Install Tarpaulin
if: matrix.os == 'ubuntu-latest' && matrix.rust == 'stable'
run: cargo install cargo-tarpaulin --version 0.18.0-alpha3
- name: Build
run: cargo build --verbose --all-features
- name: Run tests
run: cargo test --verbose --all-features
- name: Generate coverage report
if: matrix.os == 'ubuntu-latest' && matrix.rust == 'stable'
run: cargo tarpaulin --out Xml --avoid-cfg-tarpaulin
- name: Upload coverage to Codecov
if: matrix.os == 'ubuntu-latest' && matrix.rust == 'stable'
uses: codecov/codecov-action@v1
with:
token: ${{secrets.CODECOV_TOKEN}}