Skip to content

readme: Correct test badge (#148) #17

readme: Correct test badge (#148)

readme: Correct test badge (#148) #17

Workflow file for this run

name: build
on:
push:
permissions:
contents: read
jobs:
goreleaser:
# we need ubuntu 20.04 because golines needs
# to run on hosts with older glibc versions
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: "1.21"
cache: false
- name: build golines
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: build --clean --snapshot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}