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

Skip to content

Update build.yml to use Ubuntu 22 instead of 20 #82

Update build.yml to use Ubuntu 22 instead of 20

Update build.yml to use Ubuntu 22 instead of 20 #82

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