There was an error while loading. Please reload this page.
1 parent ecb7e35 commit b23b219Copy full SHA for b23b219
1 file changed
.github/workflows/irc2p.yml
@@ -1,4 +1,4 @@
1
-name: IRC2P deterministic
+name: CI
2
3
on:
4
push:
@@ -10,14 +10,20 @@ permissions:
10
contents: read
11
12
jobs:
13
- deterministic:
+ verify:
14
runs-on: ubuntu-latest
15
- timeout-minutes: 8
+ timeout-minutes: 15
16
steps:
17
- uses: actions/checkout@v4
18
- uses: actions/setup-go@v5
19
with:
20
go-version-file: go.mod
21
cache: true
22
- - name: Verify SAM and tunnel packages
23
- run: go test -p=1 -count=1 ./cmd/toyirc ./networking/internal/tunnel ./networking/internal/router ./node/internal/runtime
+ - name: Install gojgp
+ run: go install github.com/gosuda/JustGoodPractices/cmd/gojgp@v1.2.0
24
+ - name: Run all tests
25
+ run: go test -count=1 ./...
26
+ - name: Run go vet
27
+ run: go vet ./...
28
+ - name: Run gojgp
29
+ run: gojgp lint ./...
0 commit comments