Skip to content

Commit

Permalink
fix: Specify Python version in the integration tests (#3340)
Browse files Browse the repository at this point in the history
Fixes old Python on Mac OS and Windows.
  • Loading branch information
fabiomadge authored Jan 8, 2023
1 parent dcb7ff9 commit ab31f58
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/integration-tests-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run: echo "target-runtime-version=[\"oldest\"]" >> $GITHUB_OUTPUT
- name: Populate shard list
id: populate-shard-list
run: echo "shard-list=[" $(seq -s , 1 ${{ inputs.num_shards }}) "]" >> $GITHUB_OUTPUT
run: echo "shard-list=[`seq -s , 1 ${{ inputs.num_shards }}`]" >> $GITHUB_OUTPUT
outputs:
os-list: ${{ steps.populate-os-list-all.outputs.os-list }} ${{ steps.populate-os-list-one.outputs.os-list }}
os-mapping: ${{ steps.populate-os-mapping.outputs.os-mapping }}
Expand Down Expand Up @@ -90,6 +90,10 @@ jobs:
run: pip install lit OutputCheck pyyaml
- uses: actions/setup-node@v3
- run: npm install bignumber.js
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Checkout Dafny
uses: actions/checkout@v3
with:
Expand Down

0 comments on commit ab31f58

Please sign in to comment.