Update dashmap requirement from 5.1 to 6.1 #118
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 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
format-clippy: | |
name: Format & Clippy | |
runs-on: ubuntu-latest | |
env: | |
CARGO_TERM_COLOR: always | |
RUSTFLAGS: "-D warnings" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
components: rustfmt, clippy | |
- name: Format and clippy | |
continue-on-error: true | |
run: | | |
cargo fmt -- --check | |
cargo clippy -- -D clippy::all | |
default-test: | |
name: default-test-${{ matrix.os }}-${{ matrix.rust_version }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
# Only run nightly on ubuntu-latest | |
rust_version: [stable, nightly] | |
include: | |
- os: windows-latest | |
rust_version: stable | |
- os: macOS-latest | |
rust_version: stable | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_BACKTRACE: 1 | |
RUSTFLAGS: "-D warnings" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust_version }} | |
override: true | |
- name: Test | |
run: cargo test --all -- --nocapture | |
all-features-test: | |
name: feature-test-${{ matrix.os }}-${{ matrix.rust_version }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
# Only run nightly on ubuntu-latest | |
rust_version: [stable, nightly] | |
include: | |
- os: windows-latest | |
rust_version: stable | |
- os: macOS-latest | |
rust_version: stable | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_BACKTRACE: 1 | |
RUSTFLAGS: "-D warnings" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust_version }} | |
override: true | |
- name: Test with --all-features | |
run: cargo test --all --all-features -- --nocapture | |
sanitizer: | |
name: address-sanitizer-ubuntu-latest-nightly | |
runs-on: ubuntu-latest | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_BACKTRACE: 1 | |
RUSTFLAGS: "-D warnings -Z sanitizer=address" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
components: rust-src | |
- name: Run address sanitizer on tests | |
run: cargo test -Zbuild-std --target x86_64-unknown-linux-gnu --all --all-features -- --nocapture |