mirror of
https://github.com/livekit/livekit.git
synced 2026-04-02 23:45:50 +00:00
* minimal change * Better test format for GH CI * Give server a bit longer to startup, to improve GH test
58 lines
1.3 KiB
YAML
58 lines
1.3 KiB
YAML
name: Test
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: |
|
|
~/go/pkg/mod
|
|
~/go/bin
|
|
~/.cache
|
|
key: livekit-server
|
|
- uses: shogo82148/actions-setup-redis@v1.10.3
|
|
with:
|
|
redis-version: '6.x'
|
|
auto-start: true
|
|
- run: redis-cli ping
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.17
|
|
|
|
- name: Set up gotestfmt
|
|
run: go install github.com/haveyoudebuggedit/gotestfmt/v2/cmd/gotestfmt@latest
|
|
|
|
- name: Download Go modules
|
|
run: go mod download
|
|
|
|
- name: Mage Build
|
|
uses: magefile/mage-action@v1
|
|
with:
|
|
version: latest
|
|
args: build
|
|
|
|
- name: Test
|
|
run: |
|
|
set -euo pipefail
|
|
go test -json -v ./... 2>&1 | tee /tmp/gotest.log | gotestfmt
|
|
|
|
# Upload the original go test log as an artifact for later review.
|
|
- name: Upload test log
|
|
uses: actions/upload-artifact@v2
|
|
if: always()
|
|
with:
|
|
name: test-log
|
|
path: /tmp/gotest.log
|
|
if-no-files-found: error
|