Skip to content

made allen data compatible by adding image_names arg (#148) #9

made allen data compatible by adding image_names arg (#148)

made allen data compatible by adding image_names arg (#148) #9

Workflow file for this run

name: CI - Ruff Linting
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
workflow_dispatch:
jobs:
ruff:
name: Ruff Linting
runs-on: ubuntu-latest
if: |
github.event_name == 'push' ||
github.event_name == 'workflow_dispatch' ||
(
github.event_name == 'pull_request' &&
github.repository != github.event.pull_request.head.repo.full_name
)
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run Ruff
uses: astral-sh/ruff-action@v3
with:
version: "0.15.6"
args: "check"