Skip to content

Add github actions - build and test project workflow #1

Add github actions - build and test project workflow

Add github actions - build and test project workflow #1

Workflow file for this run

name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21.4'
- name: Build
run: make build
- name: Test
run: make test