File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ name: Node.js CI Windows Platform
22
33on : [push, pull_request]
44
5+ env :
6+ PYTHON_VERSION : ' 3.11'
7+
58permissions :
69 contents : read
710
1821 runs-on : ${{ matrix.os }}
1922 steps :
2023 - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
24+ - name : Set up Python ${{ env.PYTHON_VERSION }}
25+ uses : actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
26+ with :
27+ python-version : ${{ env.PYTHON_VERSION }}
2128 - name : Use Node.js ${{ matrix.node-version }}
2229 uses : actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
2330 with :
Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ name: Node.js CI Unix Platform
22
33on : [push, pull_request]
44
5+ env :
6+ PYTHON_VERSION : ' 3.11'
7+
58permissions :
69 contents : read
710
2326 runs-on : ${{ matrix.os }}
2427 steps :
2528 - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
29+ - name : Set up Python ${{ env.PYTHON_VERSION }}
30+ uses : actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
31+ with :
32+ python-version : ${{ env.PYTHON_VERSION }}
2633 - name : Use Node.js ${{ matrix.node-version }}
2734 uses : actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
2835 with :
You can’t perform that action at this time.
0 commit comments