From 7d43ae29c04be5d5e99143019718a5e11b02d762 Mon Sep 17 00:00:00 2001 From: Leon Thomm Date: Mon, 20 May 2024 17:44:32 +0200 Subject: [PATCH] use ryvencore main branch for type checking --- .github/workflows/type-checking.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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