mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-24 07:32:28 +00:00
27 lines
410 B
YAML
27 lines
410 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
test:
|
|
name: test
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: "1.15"
|
|
|
|
- run: sudo apt-get install -y --no-install-recommends ffmpeg
|
|
|
|
- run: make test-nodocker
|
|
|
|
- run: bash <(curl -s https://codecov.io/bash)
|