Skip to content

Merge pull request #107 from LaurenzV/4.4.1-next #288

Merge pull request #107 from LaurenzV/4.4.1-next

Merge pull request #107 from LaurenzV/4.4.1-next #288

Workflow file for this run

name: Rust
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build with only libm
run: cargo build --no-default-features --features libm
- name: Build with all features
run: cargo build --all-features
- name: Run tests
run: cargo test --verbose