Skip to content

Add CI (#4)

Add CI (#4) #2

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
ci_check:
name: CI Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Ruff
run: curl -LsSf https://astral.sh/ruff/install.sh | sh
- name: Code Format Check
run: ruff format --check
- name: Code Lint Check
run: ruff check