Skip to content

Update

Update #3

Workflow file for this run

name: Code Formatting
on:
push:
branches:
- main
- development
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Ruff
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff Formatter
run: ruff format .