Release 0.4.0 #35
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: Test Suite | |
on: | |
pull_request: | |
workflow_dispatch: | |
env: | |
RUSTFLAGS: -D warnings | |
jobs: | |
test: | |
name: Test Suite | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Install cargo make | |
uses: davidB/rust-cargo-make@v1 | |
- name: Install stable toolchain | |
run: cargo make install-stable | |
- name: Run unit tests | |
run: cargo make unit-test | |
env: | |
RUST_BACKTRACE: 1 | |
- name: Run integration tests | |
run: cargo make integration-test | |
env: | |
RUST_BACKTRACE: 1 |