Fix MP4 video output in save_video_as_grid_and_mp4
#186
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run black | |
on: [pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install venv | |
run: | | |
sudo apt-get -y install python3.10-venv | |
- uses: psf/black@stable | |
with: | |
options: "--check --verbose -l88" | |
src: "./sgm ./scripts ./main.py" |