Skip to content

Feature/packaging

Feature/packaging #19

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
types:
- opened
- synchronize
- closed
workflow_dispatch:
env:
MAIN_PYTHON_VERSION: "3.12"
PIP_CACHE_DIR: "~/.cache/pip/"
jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: $MAIN_PYTHON_VERSION
- name: Cache dependencies
uses: actions/cache@v3
with:
path: $PIP_CACHE_DIR
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Download Dependencies
run: pip install -r requirements.txt
test-main-python:
runs-on: ubuntu-latest
steps:
- name: Restore Dependencies Cache
uses: actions/cache@v3
with:
path: $PIP_CACHE_DIR
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install Dependencies
run: |
pip install -e .
pip install -r requirements.txt
- name: Unit Tests
run: coverage run -m pytest -s tests
- name: Test Coverage
run: coverage report --fail-under=96
- name: Pre-Commit Hooks
run: |
pre-commit install
pre-commit run --all-files
test-matrix:
runs-on: ubuntu-latest
steps:
- name: Restore Dependencies Cache
uses: actions/cache@v3
with:
path: $PIP_CACHE_DIR
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install Dependencies
run: |
pip install -e .
pip install -r requirements.txt
- name: Run Test Matrix
run: tox run --skip-env $MAIN_PYTHON_VERSION