rickub/portalpublic Fork 0
827df30
Commits
Clone
git clone https://git.rickub.com/rickub/portal.git
git clone ssh://git@rickub.com/rickub/portal.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

ci: set up the Go toolchain (runners ship without it)Unverified

rick committed 2026-09-23T23:02:20+02:00 Browse files
827df30 parent: c2be2f8
modified .github/workflows/ci.yml +4 -1
@@ -5,7 +5,10 @@ jobs:
55 test:
66 runs-on: ubuntu-latest
77 steps:
8- - uses: actions/checkout@v1
8+ - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
9+ - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
10+ with:
11+ go-version: "1.26"
912 - run: go build ./...
1013 - run: go vet ./...
1114 - run: go test ./...
@@ -5,7 +5,10 @@ jobs:
5 test:5 test:
6 runs-on: ubuntu-latest6 runs-on: ubuntu-latest
7 steps:7 steps:
8- - uses: actions/checkout@v18+ - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
9+ - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
10+ with:
11+ go-version: "1.26"
9 - run: go build ./...12 - run: go build ./...
10 - run: go vet ./...13 - run: go vet ./...
11 - run: go test ./...14 - run: go test ./...