Skip to content

Bump docker/metadata-action from 5.5.0 to 5.5.1 (#74) #189

Bump docker/metadata-action from 5.5.0 to 5.5.1 (#74)

Bump docker/metadata-action from 5.5.0 to 5.5.1 (#74) #189

Workflow file for this run

---
name: Build
on:
push:
branches:
- master
tags:
- "v*"
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: ["1.20", "1.21"]
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 ./...