feat: first implementation of statistics #6
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: | |
pull_request: | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint-format: | |
name: Check linting and formatting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 | |
with: | |
fetch-depth: 0 | |
- name: pip update | |
run: python -m pip install --upgrade pip | |
- name: Install dependencies | |
run: python -m pip install build setuptools_scm[toml] | |
- name: Install dependencies | |
run: python -m pip install .[dev] | |
- name: Lint | |
run: python -m ruff . | |
- name: Check format | |
run: python -m ruff format . | |
- name: Check Diff | |
run: | | |
DIFF="$(git diff --name-only)" | |
if [ -z "$DIFF" ]; then | |
echo "OK: Format is clean" | |
else | |
echo "Error: Format was not clean" | |
echo "List of files:" | |
echo "$DIFF" | |
git diff | |
exit 1 | |
fi | |
build-test: | |
name: Build and test Python | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 | |
with: | |
fetch-depth: 0 | |
- name: pip update | |
run: python -m pip install --upgrade pip | |
- name: Install dependencies | |
run: python -m pip install build setuptools_scm[toml] | |
- name: Install dependencies | |
run: python -m pip install .[tests] | |
- name: Run tests | |
run: python -m pytest tests --cov=armonik_analytics --cov-config=.coveragerc --cov-report=term-missing --cov-report xml:coverage.xml --cov-report html:coverage_report | |
- name: Get Cover | |
uses: orgoro/coverage@6d7a2607343d2abeab89ef40b54ec9785134e313 | |
with: | |
coverageFile: coverage.xml | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Archive code coverage results html | |
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3 | |
with: | |
name: code-coverage-report-html | |
path: coverage_report | |
- name: Archive code coverage results xml | |
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3 | |
with: | |
name: code-coverage-report-xml | |
path: coverage.xml |