File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -64,15 +64,15 @@ jobs:
64
64
# Create a virtualenv
65
65
python -m venv python${{ matrix.python-version }}-venv
66
66
# Activate virtualenv
67
- source python${{ matrix.python-version }}-venv
67
+ source python${{ matrix.python-version }}-venv/bin/activate
68
68
69
69
# #######################
70
70
# Install dependencies #
71
71
# #######################
72
72
- name : Install dependencies
73
73
run : |
74
74
# Activate virtualenv
75
- source python${{ matrix.python-version }}-venv
75
+ source python${{ matrix.python-version }}-venv/bin/activate
76
76
# Upgrade pip
77
77
python -m pip install --upgrade pip
78
78
# Install linters and other python modules
84
84
- name : Install requirements
85
85
run : |
86
86
# Activate virtualenv
87
- source python${{ matrix.python-version }}-venv
87
+ source python${{ matrix.python-version }}-venv/bin/activate
88
88
# Install requirements
89
89
pip install -r requirements.txt
90
90
94
94
- name : Python Code Quality and Lint
95
95
run : |
96
96
# Activate virtualenv
97
- source python${{ matrix.python-version }}-venv
97
+ source python${{ matrix.python-version }}-venv/bin/activate
98
98
# Module to be tested
99
99
module=.
100
100
# pylint
You can’t perform that action at this time.
0 commit comments