0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/.github/workflows/go.yml

23 lines
449 B
YAML
Raw Normal View History

name: Go Test (for livestream service)
on:
pull_request:
paths:
- 'livestream/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22
- name: Run tests
run: cd livestream && go test -v