Skip to content

Commit f5a77ce

Browse files
committed
ci: add test workflow
1 parent f246a22 commit f5a77ce

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Coverage
2+
3+
on: push
4+
5+
jobs:
6+
coverage:
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
os:
11+
- windows-latest
12+
- ubuntu-latest
13+
runs-on: ${{ matrix.os }}
14+
steps:
15+
- name: Checkout code
16+
uses: actions/checkout@v4
17+
18+
- name: Setup go
19+
uses: actions/setup-go@v5
20+
with:
21+
go-version: "1.24.0"
22+
23+
- name: Rum all tests
24+
run: go test ./...

0 commit comments

Comments
 (0)