skruecken 7090578f32
Some checks failed
Build / Build (push) Failing after 5s
.gitea/workflows/build.yaml aktualisiert
2025-03-22 17:26:46 +01:00

20 lines
516 B
YAML

name: Build
on: [push]
jobs:
Build:
runs-on: ubuntu-latest
ontainer:
image: golang:latest
options: --network host
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "The ${{ gitea.repository }} repository has been cloned to the runner."
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- run: go mod tidy
- run: go build .
- run: echo "This job's status is ${{ job.status }}."