Thanks to visit codestin.com Credit goes to github.com
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 5bf2fb2 commit 481bee0Copy full SHA for 481bee0
1 file changed
.github/workflows/build.yml
@@ -85,3 +85,17 @@ jobs:
85
run: python -VV
86
- name: Run tests
87
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