Skip to content

Commit 207e347

Browse files
committed
ci: make sure Python and Pygments are available
1 parent 8ac500d commit 207e347

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,14 @@ jobs:
7171
- name: "Checkout repository"
7272
uses: "actions/checkout@v4"
7373

74+
- name: "Install Python"
75+
uses: "actions/setup-python@v5"
76+
with:
77+
python-version: "3.13"
78+
79+
- name: "Install Python Pygments"
80+
run: "pip install Pygments==2.19.1"
81+
7482
- name: "Install PHP"
7583
uses: "shivammathur/setup-php@v2"
7684
with:
@@ -103,6 +111,14 @@ jobs:
103111
- name: "Checkout repository"
104112
uses: "actions/checkout@v4"
105113

114+
- name: "Install Python"
115+
uses: "actions/setup-python@v5"
116+
with:
117+
python-version: "3.13"
118+
119+
- name: "Install Python Pygments"
120+
run: "pip install Pygments==2.19.1"
121+
106122
- name: "Install PHP"
107123
uses: "shivammathur/setup-php@v2"
108124
with:

0 commit comments

Comments
 (0)