Skip to content

RM unnecessary if

RM unnecessary if #14

Workflow file for this run

name: Build and Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Checkout src
uses: actions/checkout@v2
- name: Go get
run: |
go get -v -t -d ./...
- name: Go build
run: go build -v .
- name: Go test
run: go test -v .