Skip to content

Commit 28c120d

Browse files
author
Ryan Munro
committed
more python versions
1 parent 962bf82 commit 28c120d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/nodejs.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,18 @@ jobs:
1717
strategy:
1818
matrix:
1919
node-version: [4.x, 5.x, 6.x, 7.x, 8.x, 9.x, 10.x, 11.x, 12.x, 13.x, 14.x]
20+
python-version: [2.6, 2.7, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8]
2021
steps:
2122
- uses: actions/checkout@v2
23+
- name: Set up Python ${{ matrix.python-version }}
24+
uses: actions/setup-python@v1
25+
with:
26+
python-version: ${{ matrix.python-version }}
2227
- name: Use Node.js ${{ matrix.node-version }}
2328
uses: actions/setup-node@v1
2429
with:
2530
node-version: ${{ matrix.node-version }}
31+
- run: python -V && node --version
2632
- run: npm install -d
2733
# - run: npm run build --if-present
2834
- run: npm test

0 commit comments

Comments
 (0)