We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cebb9a0 commit 05c4b29Copy full SHA for 05c4b29
.github/workflows/python-app.yml
@@ -23,9 +23,22 @@ jobs:
23
uses: actions/setup-python@v3
24
with:
25
python-version: "3.11"
26
+ - name: Set up Java
27
+ uses: actions/setup-java@v3
28
+ with:
29
+ java-version: '11' # PlantUML requires Java; set up a compatible Java version.
30
+
31
+ - name: Download latest PlantUML release
32
+ run: |
33
+ # Fetch the latest PlantUML release URL from GitHub API
34
+ curl -L -o plantuml.jar https://github.com/plantuml/plantuml/releases/download/v1.2024.7/plantuml-mit-1.2024.7.jar
35
+ - name: Create .env file for PlantUML
36
37
+ echo "PLANTUML_JAR=plantuml.jar" > .env
38
- name: Install dependencies
39
run: |
40
python -m pip install hatch
41
- name: Test with pytest
42
43
hatch run pytest
44
0 commit comments