Skip to content

Commit 7769461

Browse files
authored
Update python-actions-test.yml
1 parent 13be42f commit 7769461

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/python-actions-test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,16 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: [3.8, 3.9, 3.10, 3.11]
18+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1919

2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v3
2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v2
23+
uses: actions/setup-python@v3
2424
with:
2525
python-version: ${{ matrix.python-version }}
26+
- name: Display Python version
27+
run: python -c "import sys; print(sys.version)"
2628
- name: Install dependencies
2729
run: |
2830
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)