diff --git a/.github/workflows/type-checking.yml b/.github/workflows/type-checking.yml index 87f97175..64815d66 100644 --- a/.github/workflows/type-checking.yml +++ b/.github/workflows/type-checking.yml @@ -18,11 +18,11 @@ jobs: python-version: 3.10.x architecture: x64 # if we are not on the main branch, install ryvencore from the dev branch from github - # otherise, install ryvencore from pypi + # otherise, install ryvencore from the main branch from github - if: github.ref != 'refs/heads/main' run: python -m pip install git+https://github.com/leon-thomm/ryvencore.git@dev - if: github.ref == 'refs/heads/main' - run: python -m pip install ryvencore + run: python -m pip install git+https://github.com/leon-thomm/ryvencore.git@main - name: Install ryvencore-qt dependencies run: python -m pip install . --user && python -m pip uninstall ryvencore-qt --yes working-directory: ./ryvencore-qt