Skip to content

Merge pull request #141 from wenleix/dev/wx/annotation #1482

Merge pull request #141 from wenleix/dev/wx/annotation

Merge pull request #141 from wenleix/dev/wx/annotation #1482

Workflow file for this run

name: CI
on:
push:
pull_request:
# schedule:
# - cron: '0 0 * * *' # Once per day at midnight
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build
run: |
python setup.py sdist bdist_wheel
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [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
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f test_requirements.txt ]; then pip install -r test_requirements.txt; fi
if [ -f docs_requirements.txt ]; then pip install -r docs_requirements.txt; fi
- name: Install test runner
run: python -m pip install tox
- name: Run tests
run: PY_VERSION=${{ matrix.python-version }} && tox -e py${PY_VERSION//.}
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [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
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f test_requirements.txt ]; then pip install -r test_requirements.txt; fi
if [ -f docs_requirements.txt ]; then pip install -r docs_requirements.txt; fi
- name: Lint with flake8
run: |
flake8 .
docs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
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
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f test_requirements.txt ]; then pip install -r test_requirements.txt; fi
if [ -f docs_requirements.txt ]; then pip install -r docs_requirements.txt; fi
- name: Install make
run: |
sudo apt-get install build-essential
- name: Make docs
run: |
cd docs && make html