Skip to content

Commit 1508cce

Browse files
stapelbergcopybara-github
authored andcommitted
GitHub Actions: add test workflow (copied from protobuf repo)
PiperOrigin-RevId: 715685601 Change-Id: I2bff7c1e3a4f22f42bb8ad73f2264646c308caaf
1 parent 02172b2 commit 1508cce

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/test.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
on: [push, pull_request]
2+
name: Test
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout code
8+
uses: actions/checkout@v4
9+
- name: Install Go
10+
uses: actions/setup-go@v5
11+
with:
12+
# Latest stable version of Go, e.g. 1.23.4
13+
go-version: 'stable'
14+
- name: Test
15+
run: go test -v ./...

0 commit comments

Comments
 (0)