chore: bump version to 0.8.0 #92
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: Build, Test & Check Formatting | |
on: | |
push: | |
branch: master | |
pull_request: | |
branch: master | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install valgrind | |
run: | | |
pushd $(mktemp --directory) | |
curl --silent https://sourceware.org/pub/valgrind/valgrind-3.22.0.tar.bz2 | tar --extract --bzip2 --verbose --file=- | |
cd valgrind-3.22.0 | |
./configure | |
make | |
sudo make install | |
popd | |
- name: Build without default features | |
run: cargo build --no-default-features | |
- name: Build with all features | |
run: cargo build --all-features | |
- name: Run tests without default features | |
run: cargo test --no-default-features | |
- name: Run tests with all features | |
run: cargo test --all-features | |
- name: Check formatting | |
run: cargo fmt -- --check |