Update testcontainers requirement from 0.21 to 0.22 #96
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: Rust Flow | |
on: | |
push: | |
branches: [ master ] | |
paths-ignore: | |
- '**.md' | |
- '**.yaml' | |
pull_request: | |
branches: [ master ] | |
# paths-ignore: | |
# - '**.md' | |
# - '**.yaml' | |
env: | |
CARGO_TERM_COLOR: always | |
# this one speeds up builds | |
CARGO_INCREMENTAL: 0 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 6 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
components: rustfmt | |
- name: Cargo Format | |
run: cargo fmt --all --check -- | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
- name: Cargo Compile (with tests) | |
run: cargo test --no-run --all-features | |
- name: Cargo Test | |
run: cargo test -- --nocapture --quiet |