Skip to content

Commit

Permalink
Simplify CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Jun 30, 2020
1 parent a085882 commit 829e1f1
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]

name: Python ${{ matrix.python-version }}

Expand All @@ -31,18 +28,18 @@ jobs:
restore-keys: |
lint-pre-commit-
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
python-version: 3.8

- name: Build system information
run: python .github/workflows/system-info.py

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade tox
python -m pip install -U pip
python -m pip install -U tox
- name: Lint
run: tox -e lint
Expand Down

0 comments on commit 829e1f1

Please sign in to comment.