diff options
| author | Rasmus Dahlberg <rasmus@rgdd.se> | 2026-03-13 19:24:41 +0100 |
|---|---|---|
| committer | Rasmus Dahlberg <rasmus@rgdd.se> | 2026-03-13 19:24:41 +0100 |
| commit | 5f7eae54a1e51669057b062ae82fcc4ed503ad41 (patch) | |
| tree | cdf8907e05fdcba2f39fcce2a2ca4ff9418aaf07 | |
| parent | e9150aaeb2e340847bef9b23316fa797823f5d6b (diff) | |
| parent | bfa5c2bde2bf666b54598e4a14aa445c2fbc88b5 (diff) | |
Merge branch 'rgdd/ci' into 'main'
ci: Add basic go tests
See merge request tpo/onion-services/sauteed-onions/onion-csr!2
| -rw-r--r-- | .gitlab-ci.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..b16a0fe --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,16 @@ +image: golang:1.24 + +stages: + - test + +go-vet: + stage: test + script: go vet ./... + +go-fmt: + stage: test + script: test -z $(go fmt ./...) + +go-test: + stage: test + script: go test -race ./... |
