ci: install circuitforge-core before requirements.txt on GitHub CI
Matches snipe's pattern — pip resolves the git+ VCS dep more reliably when it's pre-installed as a separate step rather than mixed into a full requirements.txt solve.
This commit is contained in:
parent
201a867c60
commit
6dcf6d0645
1 changed files with 3 additions and 0 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
|
@ -22,6 +22,9 @@ jobs:
|
|||
python-version: '3.12'
|
||||
cache: pip
|
||||
|
||||
- name: Install circuitforge-core
|
||||
run: pip install git+https://git.opensourcesolarpunk.com/Circuit-Forge/circuitforge-core.git@main
|
||||
|
||||
- name: Install dependencies
|
||||
run: pip install -r requirements.txt
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue