klank-docs/.gitea/workflows/demo.yaml
vitrinekast ddeab36416
Some checks failed
Gitea Actions Demo / compile-html (push) Failing after 1m14s
test a python action
2025-01-07 11:51:20 +01:00

28 lines
647 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.9.6"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run the python application
run: python test.py
- run: echo "🍏 This job's status is ${{ job.status }}."