Skip to content

chore(deps): bump redis from 0.25.3 to 0.25.4 #227

chore(deps): bump redis from 0.25.3 to 0.25.4

chore(deps): bump redis from 0.25.3 to 0.25.4 #227

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- id: install
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: restore build & cargo cache
uses: Swatinem/rust-cache@v1
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --locked
fmt:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- id: install
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- id: install
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: clippy
- name: restore build & cargo cache
uses: Swatinem/rust-cache@v1
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --locked -- -D warnings
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- id: install
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: restore build & cargo cache
uses: Swatinem/rust-cache@v1
- name: Build
uses: actions-rs/cargo@v1
with:
command: test
cargo-deny:
name: cargo-deny check ${{ matrix.checks }}
runs-on: ubuntu-latest
strategy:
matrix:
checks:
- advisories
- bans licenses sources
steps:
- uses: actions/checkout@v4
- name: cargo-deny check ${{ matrix.checks }}
uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check ${{ matrix.checks }}