Skip to content

chore(fluent-syntax): Use explicit features (#365) #126

chore(fluent-syntax): Use explicit features (#365)

chore(fluent-syntax): Use explicit features (#365) #126

Workflow file for this run

name: Rustfmt
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Toolchain setup
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: rustfmt
- uses: actions/checkout@v4
- name: Run rustfmt
run: cargo fmt --check