Skip to content

Bump docker/metadata-action from 5.5.1 to 5.6.1 (#106) #250

Bump docker/metadata-action from 5.5.1 to 5.6.1 (#106)

Bump docker/metadata-action from 5.5.1 to 5.6.1 (#106) #250

Workflow file for this run

---
name: Build
on:
push:
branches:
- master
tags:
- "v*"
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: ["oldstable", "stable"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- uses: actions/checkout@v4
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -ldflags="-s -w" -v
working-directory: cmd/server
- name: Test
run: go test -v -tags test ./...