Skip to content

Rename deprecated goreleaser flag #377

Rename deprecated goreleaser flag

Rename deprecated goreleaser flag #377

Workflow file for this run

# This file is managed by greposync.
# Do not modify manually.
# Adjust variables in `.sync.yml`.
name: Test
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run tests
run: make test