Skip to content

temp

temp #18

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.18.0'
check-latest: true
- name: Install dependencies
run: |
go get ./...
- name: Run build
run: go build .
- name: Run tests
run: go test -v ./...