Skip to content

Commit

Permalink
chore: add test workflow
Browse files Browse the repository at this point in the history
Signed-off-by: mudler <[email protected]>
  • Loading branch information
mudler committed Aug 14, 2024
1 parent 682f954 commit 45997be
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build-goreleaser-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: goreleaser-build-test

on:
push:
pull_request:

jobs:
goreleaser: # Add this new job for GoReleaser
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.22
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
version: v2.1.0
args: build --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 45997be

Please sign in to comment.