8000 Merge branch 'main' into python-3.11 · twilio/twilio-python@5ec7ffa · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 5ec7ffa

Browse files
authored
Merge branch 'main' into python-3.11
2 parents aaf2df3 + beafdec commit 5ec7ffa

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/test-and-deploy.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,17 @@ on:
1313
jobs:
1414
test:
1515
name: Test
16-
runs-on: ubuntu-latest
1716
timeout-minutes: 20
1817
strategy:
1918
matrix:
2019
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10', '3.11' ]
20+
os: [ubuntu-latest]
21+
# Need to pin ubuntu version for python 3.6 (see https://github.com/actions/setup-python/issues/544#issuecomment-1332535877)
22+
# Change this to use ubuntu-latest for all python versions after deprecating python 3.6
23+
include:
24+
- python-version: '3.6'
25+
os: 'ubuntu-20.04'
26+
runs-on: ${{ matrix.os }}
2127
steps:
2228
- name: Checkout twilio-python
2329
uses: actions/checkout@v3

0 commit comments

Comments
 (0)
0