Skip to content

Commit 7e8b11b

Browse files
committed
Add python 2 to Ubuntu build matrix.
1 parent 6a9c341 commit 7e8b11b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/test-ubuntu.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: ['3.14']
16+
python-version: ['2.7', '3.14']
1717
cxx: [g++, clang++]
1818
std: [c++11, c++14, c++17]
1919
include:
@@ -34,6 +34,7 @@ jobs:
3434
steps:
3535
- uses: actions/checkout@v5
3636
- name: setup python
37+
if: "${{ matrix.python-version != '2.7' }}"
3738
uses: actions/setup-python@v5
3839
with:
3940
python-version: ${{ matrix.python-version }}

0 commit comments

Comments
 (0)