Skip to content

chore(deps): bump rustls from 0.23.16 to 0.23.19 #84

chore(deps): bump rustls from 0.23.16 to 0.23.19

chore(deps): bump rustls from 0.23.16 to 0.23.19 #84

Workflow file for this run

name: Build and test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt --check
- name: Check clippy
run: cargo clippy -- -D warnings
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose