Update demo to do a build
Some checks failed
BuildTest / Build and test (push) Failing after 27s

This commit is contained in:
2024-03-15 11:33:26 +00:00
parent c6a2acf75d
commit 4a9eb6d50c

View File

@@ -1,20 +1,25 @@
name: Gitea Actions Demo name: "BuildTest"
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push] on: [push]
jobs: jobs:
Explore-Gitea-Actions: build:
name: "Build and test"
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." - name: "Install build deps"
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" run: sudo apt install build-essential
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- 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 repo"
uses: actions/checkout@v3
- name: "Bootstrap nuweb"
run: make nuweb
- name: "Make nuweb.tex"
run: make nuweb.tex nuwebdoc.tex
- name: "Build again"
run: make nuweb
- name: "Run tests"
run: make check