Skip to content

Allow deprecated ndarray into_shape #2

Allow deprecated ndarray into_shape

Allow deprecated ndarray into_shape #2

Workflow file for this run

---
name: codecov
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
tarpaulin:
name: tarpaulin
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Install tarpaulin
uses: actions-rs/[email protected]
with:
crate: cargo-tarpaulin
version: latest
use-tool-cache: true
- name: Tarpaulin
run: cargo tarpaulin --verbose --out Xml --ignore-tests --packages sprs --all-features
- name: Upload to codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}