Skip to content

Purge R code

Purge R code #18

Workflow file for this run

name: Format
on: [pull_request]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: '2'
- name: Format imports
uses: astral-sh/ruff-action@v1
with:
args: "check --fix --select I"
changed-files: "true"
- name: Format code
uses: astral-sh/ruff-action@v1
with:
args: "format"
changed-files: "true"