Skip to content

Commit 50f2b4c

Browse files
authored
Merge pull request #14 from dhellmann/fix-github-actions
fix linter action config
2 parents 15a3a81 + 5c78c0d commit 50f2b4c

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ jobs:
5353

5454
- name: Set up Python ${{ matrix.python-version }}
5555
uses: actions/setup-python@v4
56+
with:
57+
python-version: "3.11"
5658

5759
- name: Install dependencies
5860
run: python -m pip install tox
@@ -98,10 +100,10 @@ jobs:
98100

99101
strategy:
100102
fail-fast: false
101-
tox-environment:
103+
matrix:
104+
tox-environment:
102105
- docs
103106
- style
104-
- pkglint
105107

106108
steps:
107109
- uses: actions/checkout@v3
@@ -110,6 +112,8 @@ jobs:
110112

111113
- name: Set up Python
112114
uses: actions/setup-python@v4
115+
with:
116+
python-version: "3.11"
113117

114118
- name: Install dependencies
115119
run: python -m pip install tox

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ deps = -rrequirements.txt
88
setenv =
99
TOXIC = true
1010
SHELL = /bin/bash
11-
whitelist_externals =
11+
allowlist_externals =
1212
bash
1313
zsh
1414
ksh
@@ -31,7 +31,6 @@ setenv =
3131
commands = ksh ./tests/run_tests {envdir} []
3232

3333
[testenv:docs]
34-
basepython=python2.7
3534
deps =
3635
-r{toxinidir}/requirements.txt
3736
-r{toxinidir}/docs/requirements.txt

0 commit comments

Comments
 (0)