Skip to content

Bump version of Goreleaser. #97

Bump version of Goreleaser.

Bump version of Goreleaser. #97

Workflow file for this run

name: Testing
on:
push:
pull_request:
jobs:
test-app:
name: Test Application
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Test application
run: go test ./...
- name: Compile application
run: go build