Skip to content

Fixes a bug where the local_ttl was not being calculated correctly le… #68

Fixes a bug where the local_ttl was not being calculated correctly le…

Fixes a bug where the local_ttl was not being calculated correctly le… #68

Workflow file for this run

name: build tests
on:
push:
branches: [ '*' ]
tags: [ '*' ]
jobs:
test:
name: "Test package"
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: NiklasRosenstein/slap@gha/install/v1
with: { version: "1.15.0" }
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with: { python-version: "${{ matrix.python-version }}" }
- name: Create a venv to operate within using slap-cli
run: |
slap venv --create tester
- name: Install, test and build a package to install
run: |
slap release --validate
slap install --use-venv=tester
slap test --use-venv=tester
mkdir build-tester
slap publish --build-directory build-tester --dry
- name: Install the package from whl and run the application
run: |
pip install build-tester/*.whl
hibp-downloader --help