Skip to content
This repository was archived by the owner on Aug 6, 2025. It is now read-only.

Commit 92210cc

Browse files
authored
Merge pull request #2 from LF-Engineering/feature/go-mod-support
2 parents ba4da44 + 4f20ea0 commit 92210cc

File tree

9 files changed

+201
-449
lines changed

9 files changed

+201
-449
lines changed

.circleci/config.yml

Lines changed: 0 additions & 49 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: build
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
11+
build:
12+
name: Build
13+
runs-on: ubuntu-latest
14+
steps:
15+
16+
- name: Set up Go 1.x
17+
uses: actions/setup-go@v2
18+
with:
19+
go-version: ^1.14
20+
id: go
21+
22+
- name: Check out code into the Go module directory
23+
uses: actions/checkout@v2
24+
25+
- name: Setup
26+
run: make setup
27+
28+
- name: Get dependencies
29+
run: make deps
30+
31+
- name: Build
32+
run: make build
33+
34+
- name: Test
35+
run: make test
36+
37+
- name: Package
38+
run: make package

0 commit comments

Comments
 (0)