Skip to content

CI

CI #54

Workflow file for this run

name: CI
on:
push:
schedule:
- cron: '0 0 1 * *'
env:
CARGO_TERM_COLOR: always
jobs:
ci:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Test Rust
run: cargo test --verbose
- name: Test Rust ndarray
run: cargo test --verbose --all-features