Skip to content

docs: update backlog tasks #2

docs: update backlog tasks

docs: update backlog tasks #2

Workflow file for this run

name: Run pytest
on:
push:
branches:
- main
- master
paths:
- '**/*.py'
pull_request:
branches:
- main
- master
paths:
- '**/*.py'
workflow_dispatch:
jobs:
test:
runs-on: blacksmith-4vcpu-ubuntu-2404
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Set up Python
run: uv python install 3.13
- name: Install dependencies
run: uv sync --all-extras
- name: Run unit tests
run: uv run pytest -s
- name: Run e2e tests
if: github.event_name != 'pull_request'
env:
TAILSCALE_API_KEY: ${{ secrets.TAILSCALE_API_KEY }}
TAILSCALE_TAILNET: ${{ secrets.TAILSCALE_TAILNET }}
run: uv run pytest -m e2e -s