Skip to content

polish hero logo with pulsing signal orb and wordmark #13

polish hero logo with pulsing signal orb and wordmark

polish hero logo with pulsing signal orb and wordmark #13

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
services:
redis:
image: redis:7-alpine
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 5s
--health-timeout 3s
--health-retries 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.24"
- run: go vet ./...
- run: go build ./...
- run: go test -race ./...
env:
RELAY_REDIS_ADDR: 127.0.0.1:6379
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.24"
- name: gofmt
run: test -z "$(gofmt -l .)"