Skip to content

interface refactor

interface refactor #39

Workflow file for this run

name: Go
on:
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.22
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: go get -v -t -d
working-directory: ./src
- name: Build
run: go build -v
working-directory: ./src
- name: Test
run: go test -v
working-directory: ./src