rickub/portalpublic Fork 0
c2be2f8
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: build, vet and test on every pushUnverified

rick committed 2026-09-23T22:42:20+02:00 Browse files
c2be2f8 parent: 266e544
added .github/workflows/ci.yml +11 -0
new file mode 100644
@@ -0,0 +1,11 @@
1+name: ci
2+on: [push]
3+
4+jobs:
5+ test:
6+ runs-on: ubuntu-latest
7+ steps:
8+ - uses: actions/checkout@v1
9+ - run: go build ./...
10+ - run: go vet ./...
11+ - run: go test ./...
new file mode 100644
@@ -0,0 +1,11 @@
1+name: ci
2+on: [push]
3+
4+jobs:
5+ test:
6+ runs-on: ubuntu-latest
7+ steps:
8+ - uses: actions/checkout@v1
9+ - run: go build ./...
10+ - run: go vet ./...
11+ - run: go test ./...