summaryrefslogtreecommitdiff
path: root/.github/workflows/ci-linux.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci-linux.yml')
-rw-r--r--.github/workflows/ci-linux.yml18
1 files changed, 15 insertions, 3 deletions
diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml
index cc5639a..1a8897f 100644
--- a/.github/workflows/ci-linux.yml
+++ b/.github/workflows/ci-linux.yml
@@ -40,10 +40,10 @@ jobs:
- name: Setup python
uses: actions/setup-python@v1
with:
- python-version: 3.5
+ python-version: 3.8
architecture: x64
- run: pip install tox
- - run: tox -e py35-cover,py27-cover,coverage
+ - run: tox -e py38,py27,coverage
docs:
runs-on: ubuntu-latest
name: Build the documentation
@@ -52,7 +52,19 @@ jobs:
- name: Setup python
uses: actions/setup-python@v1
with:
- python-version: 3.5
+ python-version: 3.8
architecture: x64
- run: pip install tox
- run: tox -e docs
+ lint:
+ runs-on: ubuntu-latest
+ name: Lint the package
+ steps:
+ - uses: actions/checkout@master
+ - name: Setup python
+ uses: actions/setup-python@v1
+ with:
+ python-version: 3.8
+ architecture: x64
+ - run: pip install tox
+ - run: tox -e lint