Skip to content

Setup Continuous Integration #4

Setup Continuous Integration

Setup Continuous Integration #4

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