Skip to content

chore: bump version to 1.0.0 #44

chore: bump version to 1.0.0

chore: bump version to 1.0.0 #44

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Log in to Docker Hardened Images
uses: docker/login-action@v4
with:
registry: dhi.io
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Run tests
run: |
docker run --rm \
-v ${{ github.workspace }}:/workspace \
-w /workspace \
dhi.io/python:3.13-debian13-dev \
sh -c "pip install -r requirements.txt pytest pytest-cov -q && pytest tests/ -v --cov=py_conf_sync --cov-report=term-missing --cov-report=xml --cov-fail-under=100"
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
fail_ci_if_error: false