Skip to content

Update main

Update main #115

Workflow file for this run

name: Golang CI
on: [push, pull_request]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Build
run: make
- name: Test
run: make test