diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d56e0ce..7d64807 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -66,3 +66,15 @@ jobs: else: print("::notice::No secrets detected") PYEOF + + smoke: + name: smoke + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.11" + - run: pip install pytest pyyaml -q + - run: python -m pytest tests/ -v