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

Update build.yml to use Ubuntu 22 instead of 20 (#189) #87

Update build.yml to use Ubuntu 22 instead of 20 (#189)

Update build.yml to use Ubuntu 22 instead of 20 (#189) #87

Workflow file for this run

name: Black
on: [push, pull_request]
jobs:
black:
name: Black
runs-on: ubuntu-latest
steps:
- name: Checkout repository.
uses: actions/checkout@v2
- name: Setup Python.
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Check code style.
run: |
pip install black
black --config=black.toml --check python-webrtc
0