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.yml70
1 files changed, 0 insertions, 70 deletions
diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml
deleted file mode 100644
index 1a8897f..0000000
--- a/.github/workflows/ci-linux.yml
+++ /dev/null
@@ -1,70 +0,0 @@
-name: Build/test on Linux
-# This workflow is triggered on pushes to the repository.
-on: [push, pull_request]
-
-jobs:
- test:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- py: [
- '2.7',
- '3.5',
- '3.6',
- '3.7',
- '3.8',
- 'pypy2',
- 'pypy3'
- ]
- name: "Python: ${{ matrix.py }}"
- steps:
- - uses: actions/checkout@master
- - name: Setup python
- uses: actions/setup-python@v1
- with:
- python-version: ${{ matrix.py }}
- architecture: x64
- - run: pip install tox
- - name: Running tox
- run: tox -e py
- coverage:
- runs-on: ubuntu-latest
- name: Validate coverage for Python 2/3
- steps:
- - uses: actions/checkout@master
- - name: Setup python
- uses: actions/setup-python@v1
- with:
- python-version: 2.7
- architecture: x64
- - name: Setup python
- uses: actions/setup-python@v1
- with:
- python-version: 3.8
- architecture: x64
- - run: pip install tox
- - run: tox -e py38,py27,coverage
- docs:
- runs-on: ubuntu-latest
- name: Build the documentation
- 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 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