Purge R code #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Format | |
on: [pull_request] | |
env: | |
UV_SYSTEM_PYTHON: 1 | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: '2' | |
ref: ${{ github.head_ref }} | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
- name: Install Jupyter | |
run: uv pip install jupyter nbconvert | |
env: | |
UV_SYSTEM_PYTHON: 1 | |
- name: Format Python Imports | |
uses: astral-sh/ruff-action@v1 | |
with: | |
args: "check --fix --select I" | |
- name: Format code | |
uses: astral-sh/ruff-action@v1 | |
with: | |
args: "format" | |
changed-files: "true" | |
- name: Format Notebook | |
uses: astral-sh/ruff-action@v1 | |
with: | |
args: "format main/COMO.ipynb" | |
- name: Strip Notebook Output | |
run: jupyter nbconvert --clear-output --inplace "main/COMO.ipynb" | |
- name: Commit Changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "style: format code, Jupyter Notebook(s), and Python imports with `ruff`" | |
file_pattern: "main/como/*.py" |