Skip to content

Docs: Update instructions for uploading components through a release #15

Docs: Update instructions for uploading components through a release

Docs: Update instructions for uploading components through a release #15

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Hatch
run: pip install hatch
- name: Run tests
run: hatch run tests
code-quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Hatch
run: pip install hatch
- name: Run mypy
run: hatch run code-quality:mypy src tests
- name: Run black
run: hatch run code-quality:format
- name: Run ruff
run: hatch run code-quality:lint-ci