Skip to content

Merge pull request #78 from stormforger/dependabot/github_actions/act… #162

Merge pull request #78 from stormforger/dependabot/github_actions/act…

Merge pull request #78 from stormforger/dependabot/github_actions/act… #162

Workflow file for this run

name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: go build
run: go build -v .
- name: go test
run: go test ./...