Skip to content
This repository has been archived by the owner on Mar 9, 2024. It is now read-only.

chore(deps): bump tower-http from 0.5.1 to 0.5.2 #402

chore(deps): bump tower-http from 0.5.1 to 0.5.2

chore(deps): bump tower-http from 0.5.1 to 0.5.2 #402

Workflow file for this run

name: Branches
on:
pull_request:
types: [opened, reopened, synchronize]
branches-ignore:
- "release-please-*"
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
name: installing toolchain
with:
profile: default
toolchain: stable
override: true
components: rustfmt, clippy
- name: Rust Cache
uses: Swatinem/rust-cache@v2.7.3
- uses: actions-rs/cargo@v1
name: fmt
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
name: clippy
with:
command: clippy
args: --release -- -D warnings
- uses: actions-rs/cargo@v1
name: build
with:
command: build
args: --release