Skip to content
This repository has been archived by the owner on Nov 24, 2024. It is now read-only.

Bump goreleaser/goreleaser-action from 5.1.0 to 6.0.0 #73

Bump goreleaser/goreleaser-action from 5.1.0 to 6.0.0

Bump goreleaser/goreleaser-action from 5.1.0 to 6.0.0 #73

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.19
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: go test -v $(go list ./... | grep -v /sdk$) -timeout=30s