Skip to content

Commit 48d1a2b

Browse files
Add Action to perform tests
Co-Authored-By: Claudio Yanes <[email protected]> Co-Authored-By: Miguel-Dorta <[email protected]>
1 parent 0ab4416 commit 48d1a2b

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Diff for: .github/workflows/go-test.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Go
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- name: Set up Go
15+
uses: actions/setup-go@v3
16+
with:
17+
go-version: 1.19
18+
- name: Test
19+
run: go test -v ./...

0 commit comments

Comments
 (0)