Fix CI workflow for integration tests

- Remove unused services block that caused CI failure
  (Gitea runner doesn't support --name/-p in options field)
- Update build tag to modern //go:build syntax (Go 1.17+)

The workflow already manually installs and starts NATS with JetStream,
making the services block redundant.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-10 23:53:05 +01:00
parent 7085c682c3
commit f966f01dd3
2 changed files with 1 additions and 7 deletions

View File

@@ -20,12 +20,6 @@ jobs:
integration:
runs-on: ubuntu-latest
services:
nats:
image: nats:latest
options: --name nats -p 4222:4222
# Enable JetStream via command line args
# Note: The 'args' field may not be supported in all CI runners
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5

View File

@@ -1,4 +1,4 @@
// +build integration
//go:build integration
package store