Skip to content

Add setup for github actions #4

Add setup for github actions

Add setup for github actions #4

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ^1.21
- name: Build project
run: make
- name: Run tests
run: make test