Skip to content

Commit 2ff70ec

Browse files
authored
Updates github actions to new syntax (#752)
1 parent dfcc9e6 commit 2ff70ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Python ${{ matrix.python-version }}
1515
uses: actions/setup-python@v1
1616
with:
17-
version: ${{ matrix.python-version }}
17+
python-version: ${{ matrix.python-version }}
1818
- name: Install dependencies
1919
run: |
2020
python -m pip install --upgrade pip
@@ -34,7 +34,7 @@ jobs:
3434
- name: Set up Python ${{ matrix.python-version }}
3535
uses: actions/setup-python@v1
3636
with:
37-
version: ${{ matrix.python-version }}
37+
python-version: ${{ matrix.python-version }}
3838
- name: Install dependencies
3939
run: |
4040
python -m pip install --upgrade pip
@@ -55,7 +55,7 @@ jobs:
5555
- name: Set up Python ${{ matrix.python-version }}
5656
uses: actions/setup-python@v1
5757
with:
58-
version: ${{ matrix.python-version }}
58+
python-version: ${{ matrix.python-version }}
5959
- name: Install dependencies
6060
run: |
6161
brew update

0 commit comments

Comments
 (0)