Skip to content

Setup Continuous Integration #7

Setup Continuous Integration

Setup Continuous Integration #7

Workflow file for this run

name: Check
on:
pull_request:
push:
branches:
- master
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
pyright:
name: Pyright
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/setup
- run: pyright -p .