klank-docs/.gitea/workflows/demo.yaml
vitrinekast 67685a3d9c
Some checks failed
Gitea Actions Demo / compile-html (push) Failing after 1m31s
change python version in workflow
2025-01-07 11:53:38 +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.13.1"
- 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 }}."