Skip to content

SSR Streaming

SSR Streaming #689

Workflow file for this run

name: Format
on:
pull_request:
paths:
- "**/*.rs"
push:
branches: [master]
paths:
- "**/*.rs"
jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
components: rustfmt
- name: cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check