2020-12-04 22:22:39 +00:00
|
|
|
name: test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-01-29 08:58:51 +00:00
|
|
|
branches: [ main ]
|
2020-12-04 22:22:39 +00:00
|
|
|
pull_request:
|
2021-01-29 08:58:51 +00:00
|
|
|
branches: [ main ]
|
2020-12-04 22:22:39 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
name: test
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2021-02-13 19:13:23 +00:00
|
|
|
- uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: "1.15"
|
|
|
|
|
2021-02-13 19:54:20 +00:00
|
|
|
- run: sudo apt-get install -y --no-install-recommends ffmpeg
|
|
|
|
|
2021-02-13 19:13:23 +00:00
|
|
|
- run: make test-nodocker
|
|
|
|
|
|
|
|
- run: bash <(curl -s https://codecov.io/bash)
|