File tree Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -27,18 +27,14 @@ jobs:
27
27
# The type of runner that the job will run on
28
28
runs-on : ubuntu-latest
29
29
30
- strategy :
31
- matrix :
32
- python-version : ['3.10']
33
-
34
30
# Steps represent a sequence of tasks that will be executed as part of the job
35
31
steps :
36
32
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
37
33
- uses : actions/checkout@v3
38
34
# Set up a Python environment for use in actions
39
35
- uses : actions/setup-python@v4
40
36
with :
41
- python-version : ${{ matrix.python-version }}
37
+ python-version : ' 3.10 '
42
38
43
39
# Run black code formatter
44
40
- uses : psf/black@stable
@@ -49,16 +45,12 @@ jobs:
49
45
flake8 :
50
46
runs-on : ubuntu-latest
51
47
52
- strategy :
53
- matrix :
54
- python-version : ['3.10']
55
-
56
48
steps :
57
49
- uses : actions/checkout@v3
58
- - name : Set up Python ${{ matrix.python-version }}
50
+ - name : Set up Python
59
51
uses : actions/setup-python@v4
60
52
with :
61
- python-version : ${{ matrix.python-version }}
53
+ python-version : ' 3.10 '
62
54
- name : Install dependencies
63
55
run : |
64
56
python -m pip install --upgrade pip
You can’t perform that action at this time.
0 commit comments