Skip to content

build(deps): bump hyper from 0.14.26 to 0.14.27 #217

build(deps): bump hyper from 0.14.26 to 0.14.27

build(deps): bump hyper from 0.14.26 to 0.14.27 #217

Workflow file for this run

name: Rust
on:
push:
branches: ["main"]
pull_request: {}
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
- name: Fmt Check
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy --no-deps -- -Dwarnings
- name: Compile
run: cargo build
- name: Test
run: cargo test