Skip to content

ci: implement test workflow #2

ci: implement test workflow

ci: implement test workflow #2

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: Build + Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: Build
run: make build
- name: Test
run: make test