Skip to content

Properly support patterns in inline_props #831

Properly support patterns in inline_props

Properly support patterns in inline_props #831

Workflow file for this run

name: Format
on:
pull_request:
paths:
- "**/*.rs"
push:
branches: [main]
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