We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aeae735 + b0ca411 commit 5c90746Copy full SHA for 5c90746
.github/workflows/test.yml
@@ -11,6 +11,7 @@ jobs:
11
matrix:
12
os:
13
- ubuntu-latest
14
+ python: [ 3.7, 3.9]
15
splunk-version:
16
- "8.0"
17
- "latest"
@@ -34,7 +35,7 @@ jobs:
34
35
- name: Setup Python
36
uses: actions/setup-python@v2
37
with:
- python-version: 3.7
38
+ python-version: ${{ matrix.python }}
39
- name: Install tox
40
run: pip install tox
41
- name: Test Execution
Makefile
@@ -34,7 +34,7 @@ docs:
.PHONY: test
test:
@echo "$(ATTN_COLOR)==> test $(NO_COLOR)"
- @tox -e py37
+ @tox -e py37,py39
.PHONY: test_specific
test_specific:
0 commit comments