Skip to content

Commit

Permalink
Run lint on all Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
duckontheweb committed May 25, 2021
1 parent d4e93ac commit 9738619
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,12 @@ jobs:
fail_ci_if_error: false
lint:
runs-on: ubuntu-latest
strategy:
# Allow other matrix jobs to complete if 1 fails
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8"]

steps:
- uses: actions/checkout@v2

Expand All @@ -75,7 +81,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Cache dependencies (${{ runner.os }})
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pip
Expand All @@ -85,7 +91,7 @@ jobs:
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
pip install -e ".[validation]"
pip install -e .
- name: Execute linters & type checkers
run: ./scripts/lint
Expand Down

0 comments on commit 9738619

Please sign in to comment.