CI Fix
All checks were successful
CI Pipeline for the Go API / Go Vet (basic static check) (push) Successful in 9s
CI Pipeline for the Go API / Docker Image Build Test (push) Successful in 16s
CI Pipeline for the Go API / Go Build & Cross-Compile (push) Successful in 24s

This commit is contained in:
2025-10-04 17:33:02 +02:00
parent 87e0e78a85
commit 3d428f73ea

View File

@@ -17,19 +17,8 @@ jobs:
run: |
docker build -t go-api-test .
compose-test:
name: Docker Compose Validation
runs-on: docker-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Validate docker-compose.yml
run: |
docker-compose config -q
go-build:
name: Go Build & Cross-Compile
go-test:
name: Go Vet (basic static check)
runs-on: docker-latest
steps:
- name: Checkout repository
@@ -41,6 +30,16 @@ jobs:
- name: Go Vet (basic static check)
run: go vet ./...
go-build:
name: Go Build & Cross-Compile
runs-on: docker-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Check Go version
run: go version
- name: Build Linux binary
run: |
mkdir -p build