Skip to content

Adding README

Adding README #2

Workflow file for this run

name: Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
golang:
- 1.21.1
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.golang }}
- name: Run tests
run: go test -v
- name: Build
run: go build