Skip to content

build: add release action #7

build: add release action

build: add release action #7

Workflow file for this run

name: Go build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.5'
- name: build
run: go build -o todocheck -v ./app/...
# - name: Test
# run: go test -v ./app/...