Skip to content

WIP

WIP #2

Workflow file for this run

name: ci
on:
push:
branches:
- main
- dev
release:
types: [published]
pull_request:
env:
POETRY_HOME: /opt/poetry
POETRY_CACHE: /opt/poetry_cache
POETRY_VERSION: 1.7.1
jobs:
lint_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event. Selected python version is ${{ matrix.python-version }}."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Cache deps install
id: cache-deps
uses: actions/cache@v3
with:
path: |
${{ env.POETRY_HOME }}
${{ env.POETRY_CACHE }}
key: cachepoetry-${{ hashFiles('poetry.lock', '.github/workflows/**') }}-${{ matrix.python-version }}
- name: Install poetry
if: steps.cache-deps.outputs.cache-hit != 'true'
run: |
python3 -m venv $POETRY_HOME
$POETRY_HOME/bin/pip install poetry==$POETRY_VERSION
- name: Fix github path
run: |
echo "$POETRY_HOME/bin" >> "$GITHUB_PATH"
- name: Configure poetry
run: |
poetry config virtualenvs.create true
poetry config virtualenvs.in-project false
poetry config cache-dir $POETRY_CACHE
poetry config virtualenvs.path $POETRY_CACHE/venv
- name: Install requirements
if: steps.cache-deps.outputs.cache-hit != 'true'
run: |
poetry install
- name: Run lint
run: |
poetry run make FIX=0 lint
- name: Run tests / coverage
run: |
poetry run make test
- name: Run doc
run: |
poetry run make doc
- name: Check modified files
run: |
git diff --exit-code
#- name: Upload coverage reports to Codecov
# uses: codecov/codecov-action@v3
# if: matrix.python-version == '3.7'
#- name: Upload API doc as an artifact
# if: matrix.python-version == '3.7'
# uses: actions/upload-artifact@v3
# with:
# name: apidoc
# path: apihtml/
# - name: Upload PUBLIC doc as an artifact
# if: matrix.python-version == '3.7'
# uses: actions/upload-artifact@v3
# with:
# name: publicdoc
# path: html/
# - name: Upload COVERAGE as an artifact
# if: matrix.python-version == '3.7'
# uses: actions/upload-artifact@v3
# with:
# name: coverage
# path: htmlcov/
publish_pypi:
runs-on: ubuntu-latest
needs: lint_and_test
if: github.event_name == 'release' && github.event.action == 'created'
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install poetry
run: |
python3 -m venv $POETRY_HOME
$POETRY_HOME/bin/pip install poetry==$POETRY_VERSION
- name: Fix github path
run: |
echo "$POETRY_HOME/bin" >> "$GITHUB_PATH"
- name: Install requirements
run: |
poetry install
- name: Publish on Pypi
run: |
poetry run make publish