Fix computing document link #82
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: Lint | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.11] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install pipenv | |
run: pip install pipenv==2023.5.19 | |
- name: Install dependencies | |
run: pipenv install --skip-lock -d | |
- name: Check isort | |
run: pipenv run isort . --check-only --diff --quiet | |
- name: Check flake8 | |
run: pipenv run lint |