Added integration test workflow #45
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: Check Linting | |
on: | |
push: | |
branches: 'main' | |
pull_request: | |
branches: 'main' | |
workflow_dispatch: | |
jobs: | |
check-linting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v1 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install lint dependencies | |
run: pip install black==22.3.0 isort==5.10.1 flake8==4.0.1 | |
- name: Lint the code | |
run: sh shell/lint.sh |