workflow test
Some checks failed
Run tests / Explore-Gitea-Actions (push) Successful in 2m20s
Build Docs With Doxygen / Explore-Gitea-Actions (push) Failing after 57s

This commit is contained in:
maxbyte9p
2024-05-22 16:15:05 -04:00
parent 58ba13cfa6
commit f067f67af0

View File

@@ -13,10 +13,12 @@ jobs:
uses: actions/checkout@v3
- run: echo "The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "The workflow is now ready to run your tests on the runner."
- run: echo "Installing cmake"
- run: apt-get update && apt-get install -y cmake
- run: echo "Build ${{ gitea.repository }}"
- run: mkdir build
- run: cd build && cmake ../
- run: cd build && make
- run: echo "Build and run ${{ gitea.repository }} test suite"
- run: cd build && make test
- run: echo "$PWD"
- run: echo "This job's status is ${{ job.status }}."