sms-handler/.forgejo/workflows/build.yaml
phil 9d4bad339c
Some checks failed
/ test (push) Failing after 2s
Fix install uv for the test action
2024-12-01 01:41:27 +01:00

26 lines
484 B
YAML

on:
push:
workflow_dispatch:
inputs:
verbose:
description: "Verbose"
required: false
default: false
type: boolean
jobs:
test:
runs-on: container
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v4
- name: Install
run: uv sync
- name: Run tests (API call)
run: pytest -s tests/basic.py