Skip to content

Commit 670e826

Browse files
authored
Merge pull request #1 from go-tstr/add-ci-pipes
Add Go workflow
2 parents 7eb0f24 + 15dfd29 commit 670e826

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/go.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Go
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- synchronize
8+
- reopened
9+
push:
10+
branches:
11+
- master
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Setup Go
20+
uses: actions/setup-go@v5
21+
22+
- name: Download dependencies
23+
run: go download
24+
25+
- name: Test
26+
run: go test ./...

0 commit comments

Comments
 (0)