Skip to content

Commit a48170f

Browse files
author
Diego
committedOct 23, 2021
Forzar python 3.8
1 parent 2eab725 commit a48170f

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed
 

‎.github/workflows/python-lint.yaml

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Python List
1+
name: Python Lint
22

33
on: [push, pull_request]
44

@@ -11,13 +11,20 @@ jobs:
1111
github.event_name == 'push' || github.event.pull_request.head.repo.full_name !=
1212
github.repository
1313

14-
runs-on: ubuntu-latest
14+
runs-on: ${{ matrix.os }}
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
python-version: [3.8]
19+
os: [ubuntu-latest]
1520

1621
steps:
1722
- uses: actions/checkout@v2
1823

19-
- name: Set up Python
24+
- name: Set up Python ${{ matrix.python-version }}
2025
uses: actions/setup-python@v2
26+
with:
27+
python-version: ${{ matrix.python-version }}
2128

2229
- name: Install dependencies
2330
working-directory: sols/python

0 commit comments

Comments
 (0)
Please sign in to comment.