Skip to content

Commit 020d159

Browse files
committed
ci(tests): add workflow for executing tests
1 parent 05078bf commit 020d159

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Test
2+
3+
on: [push]
4+
5+
jobs:
6+
tests:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v4
11+
with:
12+
fetch-depth: 0
13+
14+
- name: Set up Go
15+
uses: actions/setup-go@v5
16+
with:
17+
go-version: '>=1.21.0'
18+
check-latest: true
19+
20+
- name: Run tests
21+
run: go test ./...

0 commit comments

Comments
 (0)