mirror of
https://github.com/pion/webrtc.git
synced 2025-09-26 19:21:12 +08:00
21 lines
414 B
YAML
21 lines
414 B
YAML
# SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
|
|
# SPDX-License-Identifier: MIT
|
|
name: Examples Tests
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
pion-to-pion-test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v3
|
|
- name: test
|
|
run: cd examples/pion-to-pion && ./test.sh
|