CI is confusing

This commit is contained in:
2025-07-16 00:28:37 +02:00
parent 5724a2342d
commit 8426bcac37

View File

@@ -7,14 +7,16 @@ on:
jobs: jobs:
build: build:
runs-on: docker runs-on: archlinux-latest
steps: steps:
- uses: actions/checkout@v3 - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- name: Install dependencies - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
run: sudo pacman -Syu --noconfirm base-devel jdk21-openjdk - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
- name: Make gradle executable uses: actions/checkout@v4
run: sudo chmod +x gradlew - 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: Build project - name: List files in the repository
run: make run: |
ls ${{ gitea.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."