* reactivate other actions * black * codeql 2 * black only * remove mock event loop * do not follow grpc
18 lines
332 B
YAML
18 lines
332 B
YAML
name: formatting
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
black:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: sudo apt-get install python3-venv
|
|
- run: python3 -m venv venv
|
|
- run: ./venv/bin/pip install black
|
|
- run: make checkblack
|