Skip to content

Commit 49e0548

Browse files
rvilgalyscopybara-github
authored andcommitted
Internal change
PiperOrigin-RevId: 515032913
1 parent ff08494 commit 49e0548

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.github/workflows/docker_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Docker build
33
on: [push]
44

55
jobs:
6-
build:
6+
docker-build:
77
# we are using ubuntu as it ships with docker pre-installed
88
runs-on: ubuntu-latest
99
steps:

.github/workflows/go_tests.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Go Test & Build
2+
3+
on: [push]
4+
5+
jobs:
6+
go-test-build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
11+
- name: Set up Go
12+
uses: actions/setup-go@v3
13+
with:
14+
go-version: 1.19
15+
16+
- name: Install Dependencies
17+
run: go install ./
18+
19+
- name: Run Go Tests
20+
run: go test -v ./
21+
22+
- name: Build wrlookup
23+
run: go build -v -o wrlookup ./cmd/wrlookup/main.go
24+
25+
- name: Build wrserver
26+
run: go build -v -o wrserver ./cmd/wrserver/main.go

0 commit comments

Comments
 (0)