Skip to content

Bump hyper-rustls from 0.26.0 to 0.27.0 #304

Bump hyper-rustls from 0.26.0 to 0.27.0

Bump hyper-rustls from 0.26.0 to 0.27.0 #304

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@v4
- name: Update Rust
run: rustup update stable
- name: cargo test
run: cargo test
rustfmt:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- 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@v4
- name: Update Rust
run: rustup update stable
- name: cargo clippy
run: cargo clippy -- -D warnings