Skip to content

Iterating on Github Action #171

Iterating on Github Action

Iterating on Github Action #171

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-python@v4
- name: Run tests
run: |
pip3 install pytest ./livekit-protocol ./livekit-api ./livekit-rtc
pytest . --ignore=livekit-rtc/rust-sks