Commit 9fe0b96

Anton Medvedev <anton@medv.io>
2025-11-30 14:16:53
Add test.yaml workflow
1 parent f63a6f8
Changed files (1)
.github
workflows
.github/workflows/test.yaml
@@ -0,0 +1,18 @@
+name: test
+
+on:
+  push:
+    branches: [ master ]
+  pull_request:
+    branches: [ master ]
+
+jobs:
+  test:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v4
+      - uses: actions/setup-go@v3
+        with:
+          go-version: 1.21
+      - name: Test
+        run: go test ./...