37 lines
1.0 KiB
YAML
37 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: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
|
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
|
- name: List files in the repository
|
|
run: uv run pytest
|
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|