Skip to content

Commit 009ffcd

Browse files
author
Ross
committed
Add github action to test go
1 parent 3cf8057 commit 009ffcd

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/test.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: go test
3+
on: pull_request
4+
jobs:
5+
test:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v5
9+
- uses: actions/setup-go@v5
10+
with:
11+
go-version: '1.25'
12+
- run: go test

0 commit comments

Comments
 (0)