summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/docs.yml43
-rw-r--r--.github/workflows/lint.yml36
-rw-r--r--.github/workflows/release.yml20
-rw-r--r--.github/workflows/test.yml89
4 files changed, 0 insertions, 188 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
deleted file mode 100644
index b5a413d..0000000
--- a/.github/workflows/docs.yml
+++ /dev/null
@@ -1,43 +0,0 @@
-name: Docs
-
-on:
- push:
- branches:
- - master
- pull_request:
- branches:
- - master
-
-env:
- PY_COLORS: 1
-
-jobs:
- sphinx:
- runs-on: ubuntu-20.04
- steps:
- - uses: actions/checkout@v2
- - name: Set up Python
- uses: actions/setup-python@v2
- with:
- python-version: "3.10"
- - name: Install dependencies
- run: pip install tox
- - name: Build docs
- env:
- TOXENV: docs
- run: tox
-
- twine-check:
- runs-on: ubuntu-20.04
- steps:
- - uses: actions/checkout@v2
- - name: Set up Python
- uses: actions/setup-python@v2
- with:
- python-version: "3.10"
- - name: Install dependencies
- run: pip install tox twine wheel
- - name: Check twine readme rendering
- env:
- TOXENV: twine-check
- run: tox
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
deleted file mode 100644
index 4f04e7b..0000000
--- a/.github/workflows/lint.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-name: Lint
-
-on:
- push:
- branches:
- - master
- pull_request:
- branches:
- - master
-
-env:
- PY_COLORS: 1
-
-jobs:
- commitlint:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- with:
- fetch-depth: 0
- - uses: wagoid/commitlint-github-action@v4
-
- linters:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-python@v2
- - run: pip install --upgrade tox
- - name: Run black code formatter (https://black.readthedocs.io/en/stable/)
- run: tox -e black -- --check
- - name: Run flake8 (https://flake8.pycqa.org/en/latest/)
- run: tox -e pep8
- - name: Run mypy static typing checker (http://mypy-lang.org/)
- run: tox -e mypy
- - name: Run isort import order checker (https://pycqa.github.io/isort/)
- run: tox -e isort -- --check
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
deleted file mode 100644
index ade71ef..0000000
--- a/.github/workflows/release.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-name: Release
-
-on:
- schedule:
- - cron: '0 0 28 * *' # Monthly auto-release
- workflow_dispatch: # Manual trigger for quick fixes
-
-jobs:
- release:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- with:
- fetch-depth: 0
- token: ${{ secrets.RELEASE_GITHUB_TOKEN }}
- - name: Python Semantic Release
- uses: relekang/python-semantic-release@master
- with:
- github_token: ${{ secrets.RELEASE_GITHUB_TOKEN }}
- pypi_token: ${{ secrets.PYPI_TOKEN }}
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
deleted file mode 100644
index 43ea68a..0000000
--- a/.github/workflows/test.yml
+++ /dev/null
@@ -1,89 +0,0 @@
-name: Test
-
-on:
- push:
- branches:
- - master
- pull_request:
- branches:
- - master
-
-env:
- PY_COLORS: 1
-
-jobs:
- unit:
- runs-on: ubuntu-20.04
- strategy:
- matrix:
- include:
- - python-version: 3.6
- toxenv: py36
- - python-version: 3.7
- toxenv: py37
- - python-version: 3.8
- toxenv: py38
- - python-version: 3.9
- toxenv: py39
- - python-version: "3.10"
- toxenv: py310
- - python-version: "3.10"
- toxenv: smoke
- steps:
- - uses: actions/checkout@v2
- - name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v2
- with:
- python-version: ${{ matrix.python-version }}
- - name: Install dependencies
- run: pip install tox pytest-github-actions-annotate-failures
- - name: Run tests
- env:
- TOXENV: ${{ matrix.toxenv }}
- run: tox
-
- functional:
- runs-on: ubuntu-20.04
- strategy:
- matrix:
- toxenv: [py_func_v4, cli_func_v4]
- steps:
- - uses: actions/checkout@v2
- - name: Set up Python
- uses: actions/setup-python@v2
- with:
- python-version: "3.10"
- - name: Install dependencies
- run: pip install tox pytest-github-actions-annotate-failures
- - name: Run tests
- env:
- TOXENV: ${{ matrix.toxenv }}
- run: tox
- - name: Upload codecov coverage
- uses: codecov/codecov-action@v2
- with:
- files: ./coverage.xml
- flags: ${{ matrix.toxenv }}
- fail_ci_if_error: true
-
- coverage:
- runs-on: ubuntu-20.04
- steps:
- - uses: actions/checkout@v2
- - name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v2
- with:
- python-version: "3.10"
- - name: Install dependencies
- run: pip install tox pytest-github-actions-annotate-failures
- - name: Run tests
- env:
- PY_COLORS: 1
- TOXENV: cover
- run: tox
- - name: Upload codecov coverage
- uses: codecov/codecov-action@v2
- with:
- files: ./coverage.xml
- flags: unit
- fail_ci_if_error: true