Documentation via gh-pages #255
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: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
name: python ${{ matrix.python-version }} on ${{matrix.os}} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- {python-version: "3.9", os: ubuntu-latest, documentation: True, coverage: True} | |
- {python-version: "3.10", os: ubuntu-latest, documentation: False, coverage: True} | |
- {python-version: "3.11", os: ubuntu-latest, documentation: False, coverage: True} | |
- {python-version: "3.12", os: ubuntu-latest, documentation: False, coverage: False} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/cache@v2 | |
with: | |
key: ${{ github.ref }} | |
path: .cache | |
- name: Set up python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
run: | | |
python -m pip install --upgrade pip | |
- name: Install ebcc | |
run: | | |
python -m pip install wheel | |
python -m pip install .[dev] | |
- name: Linting | |
run: | | |
python -m black ebcc/ --diff --check --verbose | |
python -m isort ebcc/ --diff --check-only --verbose | |
python -m flake8 ebcc/ --verbose | |
python -m mypy ebcc/ --verbose | |
#- name: Run unit tests with coverage | |
# run: | | |
# python -m pip install pytest pytest-cov | |
# pytest --cov ebcc/ | |
# if: matrix.coverage | |
#- name: Run unit tests | |
# run: | | |
# python -m pip install pytest | |
# pytest | |
# if: ${{ ! matrix.coverage }} | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true | |
if: matrix.coverage | |
- name: Deploy documentation | |
run: mkdocs gh-deploy --force -f docs/mkdocs.yaml | |
if: matrix.documentation #&& github.ref == 'refs/heads/master' |