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 1f52898 + 3f73984 commit 6b51e1bCopy full SHA for 6b51e1b
.github/workflows/unittest.yml
@@ -7,7 +7,7 @@ jobs:
7
runs-on: ubuntu-latest
8
strategy:
9
matrix:
10
- python-version: [3.8, 3,9]
+ python-version: [3.8, 3.11, 3.12]
11
name: GitHub Action
12
steps:
13
- name: Checkout
Makefile
@@ -1,9 +1,11 @@
1
.PHONY: lint test coverage
2
3
+PYTHON_PATH?=python3
4
+
5
lint:
- python -m pylint check_http_json.py
6
+ $(PYTHON_PATH) -m pylint check_http_json.py
test:
- python -m unittest discover
+ $(PYTHON_PATH) -m unittest discover
coverage:
- python -m coverage run -m unittest discover
- python -m coverage report -m --include check_http_json.py
+ $(PYTHON_PATH) -m coverage run -m unittest discover
+ $(PYTHON_PATH) -m coverage report -m --include check_http_json.py
0 commit comments