We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faedbcf commit 04cea8aCopy full SHA for 04cea8a
.github/workflows/test.yaml
@@ -0,0 +1,16 @@
1
+name: test
2
+on: [ push ]
3
+jobs:
4
+ test:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - name: Checkout
8
+ uses: actions/checkout@v4
9
+ - name: Set up Go
10
+ uses: actions/setup-go@v5
11
+ with:
12
+ go-version: 1.23
13
+ - name: Install tparse for pretty test results
14
+ run: go install github.com/mfridman/tparse@latest
15
+ - name: Run test
16
+ run: make test
0 commit comments