Skip to content

[RTR] Added transparent kinogram per phase #19

[RTR] Added transparent kinogram per phase

[RTR] Added transparent kinogram per phase #19

Workflow file for this run

# Checks if the code is formatted with black.
name: is your code linted with black?
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: '3.10'
- name: Install Black
run: pip install black
- name: Run black --check .
run: black . --check -l120