Skip to content

fix(deps): update rust crate aquatic_http_protocol to 0.9.0 #336

fix(deps): update rust crate aquatic_http_protocol to 0.9.0

fix(deps): update rust crate aquatic_http_protocol to 0.9.0 #336

Workflow file for this run

name: Continuous Integration
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Build & Test
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
steps:
- uses: actions/checkout@v4
- name: Setup Rust
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- 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: Format
run: cargo fmt --check
- name: Build
run: cargo build --release
- name: Test
run: cargo test --all