Skip to content

Bump tower from 0.4.13 to 0.5.1 #56

Bump tower from 0.4.13 to 0.5.1

Bump tower from 0.4.13 to 0.5.1 #56

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
cargo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Clippy check
run: cargo clippy --no-deps -- --deny warnings
- name: Rustdoc checks
run: cargo doc --no-deps
env:
RUSTDOCFLAGS: "--deny warnings"