Skip to content

Bump goreleaser/goreleaser-action from 5 to 6 #25

Bump goreleaser/goreleaser-action from 5 to 6

Bump goreleaser/goreleaser-action from 5 to 6 #25

Workflow file for this run

name: Continuous Integration
on:
push:
jobs:
test-app:
name: Test Application
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Test application
run: go test ./...
- name: Compile application
run: go build