mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 21:49:51 +01:00
23 lines
449 B
YAML
23 lines
449 B
YAML
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
|