improve quickstart colours, add defaults #80
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Format-api-docs | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
format-api-docs: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- uses: hynek/setup-cached-uv@v1 | |
- run: | | |
echo Installing warnet python package for cli | |
uv venv | |
uv pip install -e . | |
- name: Run apidocs script | |
run: | | |
source .venv/bin/activate | |
python3 resources/scripts/apidocs.py |