Skip to content

chore(deps): bump bytes from 1.11.0 to 1.11.1 #78

chore(deps): bump bytes from 1.11.0 to 1.11.1

chore(deps): bump bytes from 1.11.0 to 1.11.1 #78

Workflow file for this run

on:
push:
pull_request:
name: Continuous integration
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
args:
- '--no-default-features'
include:
- rust: nightly
args: '--features backtrace'
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
with:
command: build
args: ${{ matrix.args }}
- uses: actions-rs/cargo@v1
with:
command: test
args: ${{ matrix.args }}
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
with:
command: clippy
args: ${{ matrix.args }} -- -D warnings
- uses: EmbarkStudios/cargo-deny-action@v2