Merge pull request #107 from LaurenzV/4.4.1-next #288
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |