We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4faf792 commit 6a25628Copy full SHA for 6a25628
.github/workflows/test-models.yml
@@ -9,9 +9,6 @@ on:
9
schedule:
10
- cron: "0 5 * * *"
11
12
-env:
13
- PACKAGE_NAME: "linopy"
14
-
15
# Cancel any in-progress runs when a new run is triggered
16
concurrency:
17
group: ${{ github.workflow }}-${{ github.ref }}
@@ -89,8 +86,10 @@ jobs:
89
86
- name: Install package from ref
90
87
if: env.pinned == 'false'
91
88
run: |
92
- pixi remove ${{ env.PACKAGE_NAME }}
+ pixi remove pypsa
+ pixi remove linopy
93
pixi add --pypi --git https://github.com/${{ github.repository }}.git ${{ github.event.repository.name }} --rev ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
+ pixi add pypsa
94
95
- name: Run snakemake test workflows
96
0 commit comments