Merge pull request #99 from Holzhaus/maintenance #452
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: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Print Rust version | |
run: rustc -vV | |
- name: Run tests | |
run: cargo test --all-features --verbose | |
- name: Run bench | |
run: cargo bench --all-features --verbose | |
- name: Run doc | |
run: cargo doc --all-features --verbose |