Skip to content

Upgrade to hyper 1.x #27

Upgrade to hyper 1.x

Upgrade to hyper 1.x #27

Workflow file for this run

name: Format check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
cargo_fmt_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust toolchain
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- name: Run format check
run: |
export PATH="$HOME/.cargo/bin:$PATH"
cargo fmt -- --check