Skip to content

Add purchase integrity health checks #1

Add purchase integrity health checks

Add purchase integrity health checks #1

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Set up Python
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: "3.12"
cache: pip
cache-dependency-path: dtc-growth-data-report/scripts/template/requirements.txt
- name: Install dependencies
run: python -m pip install -r dtc-growth-data-report/scripts/template/requirements.txt
- name: Run regression tests
run: python -m unittest discover -s tests -p 'test_*.py'