golanggohlsrtmpwebrtcmedia-serverobs-studiortcprtmp-proxyrtmp-serverrtprtsprtsp-proxyrtsp-relayrtsp-serversrtstreamingwebrtc-proxy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
597 B
40 lines
597 B
name: test |
|
|
|
on: |
|
push: |
|
branches: [ main ] |
|
pull_request: |
|
branches: [ main ] |
|
|
|
jobs: |
|
test64: |
|
runs-on: ubuntu-22.04 |
|
|
|
steps: |
|
- uses: actions/checkout@v3 |
|
|
|
- run: make test |
|
|
|
- uses: codecov/codecov-action@v3 |
|
with: |
|
token: ${{ secrets.CODECOV_TOKEN }} |
|
|
|
test32: |
|
runs-on: ubuntu-22.04 |
|
|
|
steps: |
|
- uses: actions/checkout@v3 |
|
|
|
- run: make test32 |
|
|
|
test_highlevel: |
|
runs-on: ubuntu-22.04 |
|
|
|
steps: |
|
- uses: actions/checkout@v3 |
|
|
|
- uses: actions/setup-go@v2 |
|
with: |
|
go-version: "1.20" |
|
|
|
- run: make test-highlevel-nodocker
|
|
|