1
0
Fork 0
forked from sr2/cloud-api
cloud-api/.forgejo/workflows/publish.yaml

57 lines
1.3 KiB
YAML
Raw Permalink Normal View History

---
name: ci
on:
push:
branches:
- main
jobs:
2026-06-20 18:42:15 +01:00
ruff:
runs-on: docker
continue-on-error: true
container:
image: ghcr.io/astral-sh/uv:alpine
steps:
2026-06-08 14:45:54 +01:00
- run: apk add --no-cache nodejs npm git
2026-06-08 14:18:40 +01:00
- uses: actions/checkout@v4
2026-06-08 14:21:11 +01:00
with:
submodules: true
- run: uv python install # Gets Python version from pyproject.toml
2026-06-20 18:42:15 +01:00
- run: uv sync --dev
2026-06-08 14:47:33 +01:00
- run: uv run ruff check
- run: uv run ruff format
2026-06-20 18:42:15 +01:00
ty:
runs-on: docker
continue-on-error: true
container:
image: ghcr.io/astral-sh/uv:alpine
steps:
- run: apk add --no-cache nodejs npm git
- uses: actions/checkout@v4
with:
submodules: true
- run: uv python install # Gets Python version from pyproject.toml
- run: uv sync --dev
- run: uv run ty check
- run: uv run ruff format
- run: uv run pytest test
env:
ENVIRONMENT: testing
tests:
runs-on: docker
continue-on-error: true
container:
image: ghcr.io/astral-sh/uv:alpine
steps:
- run: apk add --no-cache nodejs npm git
- uses: actions/checkout@v4
with:
submodules: true
- run: uv python install # Gets Python version from pyproject.toml
- run: uv sync --dev
- run: uv run pytest test
env:
ENVIRONMENT: testing