Files
taskrunner/.gitea/workflows/test.yaml
T
esilva 4b79543f66
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 8s
list files
2026-07-28 15:28:59 +01:00

41 lines
1.0 KiB
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on:
push:
# workflow_dispatch:
# inputs:
# logLevel:
# description: 'Log level'
# required: true
# default: 'warning'
# type: choice
# options:
# - info
# - warning
# - debug
# tags:
# description: 'Test scenario tags'
# required: false
# type: boolean
# environment:
# description: 'Environment to run tests against'
# type: environment
# required: true
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- name: "install uv"
run: wget -qO- https://astral.sh/uv/install.sh | sh
- name: Check out repository code
uses: actions/checkout@v4
- name: List files
run: ls -lt
- name: Sync dependencies
run: uv sync
- name: Run tests
run: uv run pytest
- run: echo "🍏 This job's status is ${{ job.status }}."