Reorganize themes and add gray-light-256 and nord-dark-256 themes #744
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths-ignore: | |
- 'doc/*.rst' | |
schedule: | |
- cron: '17 3 * * 0' | |
jobs: | |
flake8: | |
name: Flake8 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- | |
uses: actions/setup-python@v4 | |
with: | |
# matches compat target in setup.py | |
python-version: '3.8' | |
- name: "Main Script" | |
run: | | |
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/prepare-and-run-flake8.sh | |
. ./prepare-and-run-flake8.sh ./pudb ./test | |
pylint: | |
name: Pylint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: "Main Script" | |
run: | | |
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/prepare-and-run-pylint.sh | |
. ./prepare-and-run-pylint.sh "$(basename $GITHUB_REPOSITORY)" test/test_*.py | |
pytest: | |
name: Pytest on Py${{ matrix.python-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.x", "pypy3.8"] | |
steps: | |
- uses: actions/checkout@v3 | |
- | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: "Main Script" | |
run: | | |
EXTRA_INSTALL="numpy" | |
REQUIREMENTS_TXT=requirements.dev.txt | |
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh | |
. ./build-and-test-py-project.sh | |
pytest_coverage: | |
name: Pytest with Coverage Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: "Main Script" | |
run: | | |
EXTRA_INSTALL="numpy" | |
REQUIREMENTS_TXT=requirements.dev.txt | |
PYTEST_FLAGS="--cov=pudb" | |
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh | |
. ./build-and-test-py-project.sh | |
env: | |
COVERAGE: ${{ secrets.COVERAGE }} | |
docs: | |
name: Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: "Main Script" | |
run: | | |
EXTRA_INSTALL="numpy" | |
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/ci-support.sh | |
. ci-support.sh | |
build_py_project_in_venv | |
build_docs | |
# vim: sw=4 | |