Skip to content

implement spec as v1.0 #68

implement spec as v1.0

implement spec as v1.0 #68

Workflow file for this run

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