mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-24 20:11:56 -08:00
automatically inform authors of GitHub issues about new releases (#2685)
This commit is contained in:
parent
83a3086de7
commit
4cf8948fe6
6 changed files with 54 additions and 17 deletions
40
.github/workflows/code_test.yml
vendored
Normal file
40
.github/workflows/code_test.yml
vendored
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
name: code_test
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
test_64:
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- run: make test
|
||||
|
||||
- uses: codecov/codecov-action@v3
|
||||
with:
|
||||
token: ${{ secrets.CODECOV_TOKEN }}
|
||||
|
||||
test_32:
|
||||
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.21"
|
||||
|
||||
- run: make test-highlevel-nodocker
|
||||
Loading…
Add table
Add a link
Reference in a new issue