8000 Update build.yml to use Ubuntu 22 instead of 20 (#189) · MarshalX/python-webrtc@0e35be7 · GitHub
[go: up one dir, main page]

Skip to content

Build

Build #179

Workflow file for this run

name: Build
on:
pull_request:
branches:
- main
schedule:
- cron: '0 8 * * 1'
jobs:
build:
name: Build
runs-on: ubuntu-22.04
steps:
- name: Checkout repository.
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup Python.
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Build.
run: |
sudo apt install -y python3.10-dev
python setup.py build
0