goeie workflow
Some checks failed
Gitea Actions Demo / Doxygen (push) Failing after 2m40s

This commit is contained in:
Thijs Kamphuis 2025-01-28 02:11:52 +01:00
parent d7a5f76273
commit 0f7898ab97

View File

@ -3,17 +3,28 @@ run-name: ${{ gitea.actor }} is testing out Gitea Actions
on: [push]
jobs:
Explore-Gitea-Actions:
Doxygen:
runs-on: ubuntu-latest
steps:
- run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- 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: |
ls ${{ gitea.workspace }}
- run: echo "This job's status is ${{ job.status }}."
- name: Checkout the repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Doxygen
run: |
sudo apt-get update
sudo apt-get install -y doxygen
- name: Generate Doxygen Documentation
run: |
doxygen Doxyfile
- name: Upload Documentation as Artifact
uses: actions/upload-artifact@v2
with:
name: doxygen-docs
path: docs/