Skip to content

Commit 41c48dd

Browse files
committed
Fix build script
1 parent f662db6 commit 41c48dd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,11 @@ jobs:
8888
- uses: astral-sh/ruff-action@v3
8989
- run: ruff check
9090
- run: ruff format --check --diff
91-
- run: echo "from modelica_fmi.gui import compile_resources; compile_resources()" | uv run -
91+
- run: |
92+
cd modelica_fmi
93+
uv sync
94+
echo "from modelica_fmi.gui import compile_resources; compile_resources()" | uv run -
95+
cd ..
9296
- run: uv build modelica_fmi
9397
- uses: actions/upload-artifact@v4
9498
with:

0 commit comments

Comments
 (0)