Skip to content

Commit

Permalink
workflow: Do not run linting as a matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
andsens committed Aug 8, 2020
1 parent 7d1fb91 commit f186b4e
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,14 @@ jobs:
lint:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.5', '3.6', '3.7', '3.8']

steps:
- name: Checkout the project
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit f186b4e

Please sign in to comment.