Skip to content

fix(tls): avoid infinite loop (#499) #23

fix(tls): avoid infinite loop (#499)

fix(tls): avoid infinite loop (#499) #23

Workflow file for this run

name: Check Code Format
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
RUST_BACKTRACE: 1
jobs:
check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Setup Rust Toolchain
run: |
rustup default nightly
rustup component add rustfmt
- name: Check Format
run: cargo fmt --all -- --check