Skip to content

add integration test #88

add integration test

add integration test #88

Workflow file for this run

name: unit-test
on: [pull_request]
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version-file: '.python-version-ci'
- run: pip cache dir
- name: cache python packages
uses: actions/cache@v4
id: cache-pip
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- run: |
pip install -r requirements.txt
pip install .
if: steps.cache-pip.outputs.cache-hit != 'true'
- run: ./run-unit-tests.sh