Skip to content

fix: update workflow files to go mod updates (#43) #34

fix: update workflow files to go mod updates (#43)

fix: update workflow files to go mod updates (#43) #34

Workflow file for this run

name: Build
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
id: go
- name: Build
run: go build -v .
- name: Test
run: go test -v .
- name: Upload build artifact
uses: actions/upload-artifact@v2
with:
name: build
path: orgalorg