Fix incorrect if-condition in test_create_with_invalid_url #1132
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GH-Pages-PR | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- docs/** | |
- cypress/** | |
- harvester_e2e_tests/** | |
- .github/workflows/** | |
jobs: | |
gh-pages: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: [3.8] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Fetch gh-pages branch | |
run: | | |
git fetch --depth=1 origin gh-pages | |
- name: Install Hugo | |
run: | | |
# Adapted from https://gist.github.com/steinwaywhw/a4cd19cda655b8249d908261a62687f8 | |
curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest | \ | |
grep -E 'browser_download_url.*hugo_[0-9]+.*Linux-64bit.tar.gz' | \ | |
cut -d : -f 2,3 | \ | |
tr -d \" | \ | |
xargs -n 1 curl -Lo hugo.tar.gz | |
tar -xf hugo.tar.gz -C /usr/local/bin/ hugo | |
- name: Run Hugo | |
run: | | |
hugo | |
working-directory: ./docs/ | |
- name: install requirements | |
run: | | |
pip install -r test-requirements.txt | |
- name: Run pdoc3 | |
run: | | |
pdoc --html -o . . | |
mv harvester_e2e_tests/ ../docs/public/backend | |
working-directory: ./harvester_e2e_tests | |
- name: install typedoc | |
run: | | |
npm install | |
working-directory: ./cypress/ | |
- name: run typedoc | |
run: | | |
./node_modules/.bin/typedoc --options ./typedoc.json | |
mv docs/ ../docs/public/integration | |
working-directory: ./cypress/ |