Skip to content

fix: image path extract #13

fix: image path extract

fix: image path extract #13

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
paths:
- '**.py'
- '**.yml'
- '**.toml'
push:
branches:
- main
paths:
- '**.py'
- '**.yml'
- '**.toml'
jobs:
ruff:
name: Ruff check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: format
uses: chartboost/ruff-action@v1
with:
args: 'format --check'
- name: unit test
uses: chartboost/ruff-action@v1
with:
args: 'run python -m unittest'
- name: lint
uses: chartboost/ruff-action@v1