Skip to content

Bump h2 from 0.3.25 to 0.3.26 (#518) #61

Bump h2 from 0.3.25 to 0.3.26 (#518)

Bump h2 from 0.3.25 to 0.3.26 (#518) #61

Workflow file for this run

name: "TOML checks"
on:
merge_group:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
fmt-check:
name: "Formatting"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: |
cargo xtask fmt-toml
CHANGES_IN_REPO=$(git status --porcelain)
if [[ -n "$CHANGES_IN_REPO" ]]; then
exit 1
fi