This commit is contained in:
2026-01-10 20:07:35 +01:00
parent a015fd6b2e
commit 43c6e90649
18 changed files with 512 additions and 674 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ name: Docker
on:
push:
branches: [ "main" ]
branches: ["main"]
env:
REGISTRY: ghcr.io
@@ -24,7 +24,7 @@ jobs:
if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@v3.5.0
with:
cosign-release: 'v2.1.1'
cosign-release: "v2.1.1"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
+9 -16
View File
@@ -1,28 +1,21 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
branches: ["main"]
pull_request:
branches: [ "main" ]
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.3'
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.25.4"
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Build
run: go build -v ./...