Skip to content

Merge pull request #31 from milgradesec/dependabot/github_actions/gol… #99

Merge pull request #31 from milgradesec/dependabot/github_actions/gol…

Merge pull request #31 from milgradesec/dependabot/github_actions/gol… #99

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ^1.18
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v ./...