klank-docs/.gitea/workflows/demo.yaml
vitrinekast 458b470301
All checks were successful
Gitea Actions Demo / compile-html (push) Successful in 1m34s
incorrect file
2025-01-07 11:55:59 +01:00

28 lines
648 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on:
push:
branches: ["main"]
jobs:
compile-html:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: "3.11.2"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run the python application
run: python temp.py
- run: echo "🍏 This job's status is ${{ job.status }}."