Skip to content

Bump hyper-rustls from 0.24.0 to 0.24.1 #207

Bump hyper-rustls from 0.24.0 to 0.24.1

Bump hyper-rustls from 0.24.0 to 0.24.1 #207

Workflow file for this run

name: tests
on:
push:
branches:
- develop
- release
pull_request:
types:
- opened
- synchronize
- reopened
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Update Rust
run: rustup update stable
- name: cargo test
run: cargo test
rustfmt:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Update Rust
run: rustup update stable
- name: cargo fmt
run: cargo fmt --all -- --check
clippy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Update Rust
run: rustup update stable
- name: cargo clippy
run: cargo clippy -- -D warnings -A clippy::let_with_type_underscore