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

cargo (deps): bump tower-http from 0.5.1 to 0.5.2 #71

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

cargo (deps): bump tower-http from 0.5.1 to 0.5.2 #71

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup cargo cache
uses: actions/cache@v4
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Run linting
run: cargo clippy -- -D warnings
- name: Run formatting
run: cargo fmt --check
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose