We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad94b79 commit 10a38fdCopy full SHA for 10a38fd
.github/workflows/test.yml
@@ -61,13 +61,16 @@ jobs:
61
github.repository
62
63
runs-on: ubuntu-latest
64
+ strategy:
65
+ matrix:
66
+ python-version: ["3.12"]
67
steps:
68
- uses: actions/checkout@v4
69
- - name: Set up Python
70
+ - name: Set up Python ${{ matrix.python-version }}
71
uses: actions/setup-python@v5
72
with:
- python-version: "3.12"
73
+ python-version: ${{ matrix.python-version }}
74
- name: Install dependencies
75
run: pip install -U mypy
76
0 commit comments