Skip to content

Update hyper requirement from 0.14.27 to 1.3.1 #45

Update hyper requirement from 0.14.27 to 1.3.1

Update hyper requirement from 0.14.27 to 1.3.1 #45

Workflow file for this run

name: Lint
on:
push:
paths:
- '.github/workflows/lint.yml'
- '**/Cargo.toml'
- '**/*.rs'
permissions:
checks: write
contents: read
jobs:
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install clippy
run: rustup component add clippy
- name: Run clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
rustfmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install rustfmt
run: rustup component add rustfmt
- name: Check formatting
run: cargo fmt --all --check