Bump supercharge/redis-github-action from 1.4.0 to 1.7.0 #308
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: {} | |
jobs: | |
check: | |
# Run `cargo check` first to ensure that the pushed code at least compiles. | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: [1.60.0, stable] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
profile: minimal | |
override: true | |
- name: Check | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --all --bins --tests --benches | |
test: | |
needs: check | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: [1.60.0, stable, beta] | |
redis-version: [6] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
profile: minimal | |
override: true | |
# Starts Redis server needed by hitbox-redis for integration tests. | |
- name: Start Redis | |
uses: supercharge/[email protected] | |
with: | |
redis-version: ${{ matrix.redis-version }} | |
- name: Run tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --workspace --all-features -- --test-threads=1 | |
- name: Generate coverage file | |
if: > | |
matrix.rust == 'stable' | |
run: | | |
cargo install cargo-tarpaulin | |
cargo tarpaulin --out Xml --verbose --workspace --all-features --ignore-tests -- --test-threads=1 | |
- name: Upload to Codecov | |
if: > | |
matrix.rust == 'stable' | |
uses: codecov/codecov-action@v3 | |
with: | |
file: cobertura.xml | |
clippy: | |
# Check for any warnings. This is informational and thus is allowed to fail. | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
components: clippy | |
profile: minimal | |
- name: Clippy | |
uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --workspace --all-features --bins --examples --tests --benches -- -D warnings |