Skip to content

chore: Remove debug print in NUMBER builtin function (#367) #129

chore: Remove debug print in NUMBER builtin function (#367)

chore: Remove debug print in NUMBER builtin function (#367) #129

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