Merge pull request #187 from krojew/dependabot/cargo/derive_more-1.0.0 #605
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: Continuous integration | |
on: [ push, pull_request ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
name: Test Suite | |
runs-on: ubuntu-latest | |
services: | |
cassandra: | |
image: cassandra | |
ports: | |
- 9042:9042 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install minimal toolchain with clippy and rustfmt | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
components: rustfmt, clippy | |
- name: Run tests | |
# test threads must be one because else database tests will run in parallel and will result in flaky tests | |
run: cargo test --all-features --verbose -- --test-threads=1 | |
- name: Format check | |
run: cargo fmt --all -- --check | |
# Ensure that all targets compile and pass clippy checks under every possible combination of features | |
- name: Clippy check | |
run: cargo install cargo-hack && cargo hack --feature-powerset clippy --locked --release |