Skip to content

ci: setup github actions and ruff #1

ci: setup github actions and ruff

ci: setup github actions and ruff #1

Workflow file for this run

name: Check
on: [push, pull_request]
jobs:
ruff-check:
name: Ruff Checker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/setup
- run: ruff check
ruff-format:
name: Ruff Formatter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/setup
- run: ruff format