Skip to content

Add Docker Buildx setup to release workflow #11

Add Docker Buildx setup to release workflow

Add Docker Buildx setup to release workflow #11

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.26"
cache: true
- name: Run unit tests
run: go test ./...
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: latest