feat(ci): include test
Some checks failed
ci/woodpecker/pr/pr Pipeline failed
PR Build / Test (pull_request) Failing after 3m33s
PR Build / Build_Image (pull_request) Successful in 5m24s

This commit is contained in:
2025-10-05 23:33:25 +02:00
parent f9ec34c23b
commit f396b4146c

View File

@@ -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