Skip to content

Commit

Permalink
Drop py34 from test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
kvesteri committed Nov 11, 2021
1 parent 84f570c commit 29df081
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
strategy:
max-parallel: 8
matrix:
python-version: [3.4, 3.5, 3.6, 3.7, 3.8]
python-version: [3.5, 3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Pip cache
uses: actions/cache@v2
with:
Expand All @@ -33,9 +33,9 @@ jobs:
run: pip install -e ".[test]"

- name: Lint
run: |
run: |
isort --recursive --diff validators tests && isort --recursive --check-only validators tests
flake8 validators tests
- name: Test
run: py.test --doctest-glob="*.rst" --doctest-modules --ignore=setup.py
run: py.test --doctest-glob="*.rst" --doctest-modules --ignore=setup.py

0 comments on commit 29df081

Please sign in to comment.