Skip to content

GitHub Actions linter for Rust formatting #1

GitHub Actions linter for Rust formatting

GitHub Actions linter for Rust formatting #1

Workflow file for this run

name: Linters
on:
push:
branches:
- main
pull_request:
branches:
- main
# Only run when linted files change
paths:
- 'functional-tests/**/*.rs'
permissions:
contents: read
jobs:
lint:
name: Lint Rust source files
runs-on: ubuntu-latest
steps:
- name: Run Formatting Check
run: cargo fmt --check
working-directory: ./functional-tests