Removed non-make build
Some checks failed
Continuous Integration / CI (push) Failing after 31s

This commit is contained in:
sjc
2025-05-07 23:54:40 -04:00
parent 0b022d7623
commit 1f5d003470

View File

@@ -1,31 +0,0 @@
name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.17
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...