Skip to content

Initial commit with test framework #1

Initial commit with test framework

Initial commit with test framework #1

Workflow file for this run

name: ci
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v3
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: |
pip install 'onyx @ git+https://github.com/CLIMB-TRE/onyx-client@0b791a8237e0418aa42a2e0f98bac587d7afb95a'
pip install 'varys @ git+https://github.com/CLIMB-TRE/varys@40b58eede873c5ae5327540ee767a77bb0cf73fe'
pip install mkdocs-material
pip install mkdocstrings[python]
pip install mkdocs-with-pdf
- run: mkdocs gh-deploy --force