Skip to content

Commit 29df081

Browse files
committed
Drop py34 from test matrix
1 parent 84f570c commit 29df081

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
strategy:
1414
max-parallel: 8
1515
matrix:
16-
python-version: [3.4, 3.5, 3.6, 3.7, 3.8]
16+
python-version: [3.5, 3.6, 3.7, 3.8]
1717
steps:
1818
- uses: actions/checkout@v2
1919

2020
- name: Set up Python ${{ matrix.python-version }}
2121
uses: actions/setup-python@v2
2222
with:
2323
python-version: ${{ matrix.python-version }}
24-
24+
2525
- name: Pip cache
2626
uses: actions/cache@v2
2727
with:
@@ -33,9 +33,9 @@ jobs:
3333
run: pip install -e ".[test]"
3434

3535
- name: Lint
36-
run: |
36+
run: |
3737
isort --recursive --diff validators tests && isort --recursive --check-only validators tests
3838
flake8 validators tests
39-
39+
4040
- name: Test
41-
run: py.test --doctest-glob="*.rst" --doctest-modules --ignore=setup.py
41+
run: py.test --doctest-glob="*.rst" --doctest-modules --ignore=setup.py

0 commit comments

Comments
 (0)