andreped/ReferenceBot
0
1name: Linting2 3on:4 push:5 branches:6 - '*'7 pull_request:8 branches:9 - '*'10 workflow_dispatch:11 12jobs:13 build:14 runs-on: ubuntu-20.0415 steps:16 - uses: actions/checkout@v117 - name: Set up Python 3.718 uses: actions/setup-python@v219 with:20 python-version: 3.721 22 - name: Install lint dependencies23 run: pip install wheel setuptools black==22.3.0 isort==5.10.1 flake8==4.0.124 25 - name: Lint the code26 run: sh shell/lint.sh27 