Skip to content

Merge pull request #14 from thaJeztah/fix_golang #36

Merge pull request #14 from thaJeztah/fix_golang

Merge pull request #14 from thaJeztah/fix_golang #36

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.18
uses: actions/setup-go@v2
with:
go-version: 1.18
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Test
run: go test ./...
- name: Build
run: go build -v .