From f396b4146c8ae3de8ac98bc0e4303e8dfc84619e Mon Sep 17 00:00:00 2001 From: Tobias Trabelsi Date: Sun, 5 Oct 2025 23:33:25 +0200 Subject: [PATCH] feat(ci): include test --- .gitea/workflows/pr.yaml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/pr.yaml b/.gitea/workflows/pr.yaml index ff1ccb3..8f1c2bc 100644 --- a/.gitea/workflows/pr.yaml +++ b/.gitea/workflows/pr.yaml @@ -3,7 +3,22 @@ run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 on: [pull_request] jobs: - Explore-docker-Actions: + Test: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - name: Setup Go + uses: actions/setup-go@v5 + with: + go-version: '1.24.x' + - name: Install dependencies + run: go get . + - name: Build + run: go build -v ./... + - name: Test with the Go CLI + run: go test ./... + Build_Image: runs-on: ubuntu-latest steps: - name: Check out repository code