Skip to content

chore: update release config to match countdown project setup #56

chore: update release config to match countdown project setup

chore: update release config to match countdown project setup #56

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.23'
- name: Install dependencies
run: |
go get .
- name: Test
run: make test
- name: Build
run: make build