Skip to content

Add Basic CI

Add Basic CI #9

Workflow file for this run

name: "CI"
on:
pull_request:
push:
branches:
- "main"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- run: |
pip install hatch
hatch run lint:check
undeployed-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- run: |
pip install hatch
hatch run docs:build