Relative locktime bug fix #724
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: Python Lint and Formatting Check | |
on: [push, pull_request] | |
jobs: | |
lint: | |
name: Lint and Format Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install flake8 black | |
- name: Lint with flake8 | |
run: | | |
flake8 scripts/ --count --select=E9,F63,F7,F82 --show-source --statistics | |
flake8 scripts/ --count --exit-zero --max-complexity=10 --max-line-length=88 --statistics | |
- name: Check code formatting with black | |
run: | | |
black --check scripts/ |