Skip to content

Add a simple build and smoke workflow - and package (#20) #37

Add a simple build and smoke workflow - and package (#20)

Add a simple build and smoke workflow - and package (#20) #37

Workflow file for this run

name: Formatting
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
formatting:
runs-on: ubuntu-latest
name: Code Formatting and Trailing Whitespace Check
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Run Ruff for code formatting check
uses: astral-sh/ruff-action@v1
with:
args: "format --check"