Skip to content

Commit

Permalink
Add go test action
Browse files Browse the repository at this point in the history
  • Loading branch information
kysre committed Feb 11, 2024
1 parent 7cbc882 commit 9dc493f
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/go_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: go-test
on: [push]
jobs:

build:
name: Build
runs-on: ubuntu-latest
steps:

- name: Download Go
uses: actions/setup-go@v2
with:
go-version: 1.21
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v2

- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
env:
GOPROXY: "https://proxy.golang.org"
run: go build -o $@ leader ./cmd/$@

- name: Test
env:
GOPROXY: "https://proxy.golang.org"
working-directory: ./leader
run: go test -v ./...

0 comments on commit 9dc493f

Please sign in to comment.