Release 0.4.2 #34
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
on: | |
push: | |
branches: | |
- master | |
- develop | |
- github_actions_integration | |
pull_request: | |
branches: | |
- master | |
- develop | |
name: tests | |
jobs: | |
ci: | |
name: Run tests | |
runs-on: ${{ matrix.os }} | |
env: | |
RUST_BACKTRACE: '1' | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
rust: | |
- stable | |
- beta | |
- nightly | |
- 1.63.0 # MSRV | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
name: Setup rust toolchain | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.rust }} | |
override: true | |
- name: Build | |
working-directory: keyed_priority_queue | |
run: cargo build --verbose | |
- name: Test | |
working-directory: keyed_priority_queue | |
run: cargo test --verbose | |
miri_tests: | |
name: Run tests with Miri | |
runs-on: ${{ matrix.os }} | |
env: | |
RUST_BACKTRACE: '1' | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
name: Setup rust toolchain | |
with: | |
profile: minimal | |
toolchain: nightly-2022-08-11 | |
override: true | |
components: miri | |
- name: Run tests with Miri | |
working-directory: keyed_priority_queue | |
run: cargo miri test -j16 --verbose --all-features |