process-intelligence 10.0.1__tar.gz → 10.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- process_intelligence-10.0.3/.github/workflows/main.yml +52 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/.github/workflows/publish.yml +4 -3
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/PKG-INFO +1 -1
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/pyproject.toml +1 -1
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/pyproject.toml +1 -1
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/.gitignore +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/LICENSE +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/README.md +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/data/generate_sample.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/data/sample_log.csv +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/.gitignore +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/LICENSE +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/README.md +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/data/generate_sample.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/data/sample_log.csv +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/requirements.txt +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/src/__init__.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/src/config.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/src/models.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/tests/__init__.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/tests/test_helpers.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/tests/test_models.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/utils/__init__.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/utils/helpers.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/utils/logger.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/requirements.txt +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/src/__init__.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/src/config.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/src/models.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/tests/__init__.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/tests/test_helpers.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/tests/test_models.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/utils/__init__.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/utils/helpers.py +0 -0
- {process_intelligence-10.0.1 → process_intelligence-10.0.3}/utils/logger.py +0 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: ["main", "dev"]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: ["main"]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
lint:
|
|
11
|
+
name: Lint
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
steps:
|
|
14
|
+
- uses: actions/checkout@v4
|
|
15
|
+
|
|
16
|
+
- name: Set up Python
|
|
17
|
+
uses: actions/setup-python@v5
|
|
18
|
+
with:
|
|
19
|
+
python-version: "3.11"
|
|
20
|
+
|
|
21
|
+
- name: Install ruff
|
|
22
|
+
run: pip install ruff>=0.3.0
|
|
23
|
+
|
|
24
|
+
- name: Run ruff (lint)
|
|
25
|
+
run: ruff check .
|
|
26
|
+
|
|
27
|
+
- name: Run ruff (format check)
|
|
28
|
+
run: ruff format --check .
|
|
29
|
+
|
|
30
|
+
test:
|
|
31
|
+
name: Tests
|
|
32
|
+
runs-on: ubuntu-latest
|
|
33
|
+
needs: lint
|
|
34
|
+
strategy:
|
|
35
|
+
matrix:
|
|
36
|
+
python-version: ["3.10", "3.11", "3.12"]
|
|
37
|
+
steps:
|
|
38
|
+
- uses: actions/checkout@v4
|
|
39
|
+
|
|
40
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
41
|
+
uses: actions/setup-python@v5
|
|
42
|
+
with:
|
|
43
|
+
python-version: ${{ matrix.python-version }}
|
|
44
|
+
|
|
45
|
+
- name: Install dependencies
|
|
46
|
+
run: |
|
|
47
|
+
pip install --upgrade pip
|
|
48
|
+
pip install -e ".[dev]"
|
|
49
|
+
pip install -r requirements.txt
|
|
50
|
+
|
|
51
|
+
- name: Run pytest
|
|
52
|
+
run: pytest tests/ -v
|
|
@@ -61,8 +61,8 @@ jobs:
|
|
|
61
61
|
git rm -rf .
|
|
62
62
|
git checkout private/main -- .
|
|
63
63
|
|
|
64
|
-
# Exclude
|
|
65
|
-
git rm --force --ignore-unmatch .github/workflows/
|
|
64
|
+
# Exclude all workflow files
|
|
65
|
+
git rm --force --ignore-unmatch -r .github/workflows/
|
|
66
66
|
|
|
67
67
|
git add --all
|
|
68
68
|
git commit -m "${{ github.event.inputs.commit_message }}"
|
|
@@ -79,11 +79,12 @@ jobs:
|
|
|
79
79
|
- name: Create GitHub release in public repo
|
|
80
80
|
env:
|
|
81
81
|
GH_TOKEN: ${{ secrets.PUBLIC_REPO_PAT }}
|
|
82
|
+
CHANGELOG: ${{ github.event.inputs.changelog }}
|
|
82
83
|
run: |
|
|
83
84
|
gh release create ${{ github.event.inputs.tag }} \
|
|
84
85
|
--repo LukasSchBal/test \
|
|
85
86
|
--title "${{ github.event.inputs.tag }}" \
|
|
86
|
-
--notes "$
|
|
87
|
+
--notes "$CHANGELOG"
|
|
87
88
|
|
|
88
89
|
- name: Set up Python
|
|
89
90
|
uses: actions/setup-python@v6
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/data/generate_sample.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/tests/test_helpers.py
RENAMED
|
File without changes
|
{process_intelligence-10.0.1 → process_intelligence-10.0.3}/public-repo/tests/test_models.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|