use python3 for workflows (#267)

Use python3 for running tests. Grist has supported python3 for a while,
and is slowly slowly starting to inch away from python2 support. Grist
now needs python3 when doing imports, although python2 is still supported
for regular document operation.
This commit is contained in:
Paul Fitzpatrick 2022-09-06 11:46:52 -04:00 committed by GitHub
parent ec157dc469
commit c588d58959
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: [2.7] python-version: [3.9]
node-version: [14.x] node-version: [14.x]
steps: steps:
- name: Check out the repo - name: Check out the repo

View File

@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: [2.7] python-version: [3.9]
node-version: [14.x] node-version: [14.x]
steps: steps: