Skip to content

Custom functions with scope access #124

Custom functions with scope access

Custom functions with scope access #124

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