summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Dennis <robd@services-in.xr>2023-01-17 11:40:35 -0500
committerRob Dennis <robd@services-in.xr>2023-01-17 11:40:35 -0500
commite94bccec559e858cadd4f699b6c2549b4888a7bf (patch)
tree23beea0290a4ce49c4360d58c2be5e8b6261fb84
parent148d8f8045fb72a00898057d156db40540918f78 (diff)
downloadconfigobj-git-e94bccec559e858cadd4f699b6c2549b4888a7bf.tar.gz
#226 - first attempt with github actions
-rw-r--r--.github/workflows/python-test.yml32
-rw-r--r--.travis.yml15
2 files changed, 32 insertions, 15 deletions
diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml
new file mode 100644
index 0000000..1629d1e
--- /dev/null
+++ b/.github/workflows/python-test.yml
@@ -0,0 +1,32 @@
+name: Python package
+
+on: [push]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ python-version: ["3.7", "3.8", "3.9", "3.10"]
+
+ steps:
+ - uses: actions/checkout@v3
+ - name: Set up Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v4
+ with:
+ python-version: ${{ matrix.python-version }}
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install flake8 pytest
+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
+ - name: Lint with flake8
+ run: |
+ # stop the build if there are Python syntax errors or undefined names
+ flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
+ # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
+ flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
+ - name: Test with pytest
+ run: |
+ coverage run --source=configobj.py,validate.py pytest tests \ No newline at end of file
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index fd6828c..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,15 +0,0 @@
-language: python
-python: 2.7
-env:
- - TOX_ENV=py34
- - TOX_ENV=py33
- - TOX_ENV=py32
- - TOX_ENV=py27
- - TOX_ENV=py26
-install:
- - pip install tox
- - pip install python-coveralls
-script:
- - tox -e $TOX_ENV
-after_success:
- coveralls