Skip to content

Commit 481bee0

Browse files
authored
GHA: test Python 2.7 (#82)
1 parent 5bf2fb2 commit 481bee0

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,17 @@ jobs:
8585
run: python -VV
8686
- name: Run tests
8787
run: python runtests.py --current --verbose
88+
89+
test_python27:
90+
name: 'Test Python 2.7'
91+
runs-on: ubuntu-22.04
92+
steps:
93+
- uses: actions/checkout@v3
94+
- name: Install Python 2.7
95+
run: |
96+
sudo apt-get update
97+
sudo apt-get -yq install python2.7 python2.7-dev
98+
- name: Display the Python version
99+
run: python2.7 -VV
100+
- name: Run tests
101+
run: python2.7 runtests.py --current --verbose

0 commit comments

Comments
 (0)