Skip to content

Enable comm_replay in PARAM by Integrating and Refactoring Comm Code … #114

Enable comm_replay in PARAM by Integrating and Refactoring Comm Code …

Enable comm_replay in PARAM by Integrating and Refactoring Comm Code … #114

Workflow file for this run

name: Python Linting
on: [push, pull_request]
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
pip install black
- name: Run Black
run: black . --check