Adding IAC5 to IAC8 which were missing from the PPC SPR list #69
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: style | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
code_style: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout viv | |
uses: actions/checkout@v2 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: pip install 'isort==5.*' black | |
- name: Lint with isort | |
run: isort --profile black --length-sort --line-width 120 -c . | |
- name: Lint with black | |
run: black -l 120 --check . |