File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 53
53
with :
54
54
stack-name : ${{ matrix.stack-name }}
55
55
python-version : ${{ matrix.python-version }}
56
- ref-zenml : ${{ inputs.ref-zenml || 'feature/OSSK-342-rename-model-version-to-a-model ' }}
56
+ ref-zenml : ${{ inputs.ref-zenml || 'develop ' }}
57
57
ref-template : ${{ inputs.ref-template || github.ref }}
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ export ZENML_DEBUG=1
7
7
export ZENML_ANALYTICS_OPT_IN=false
8
8
9
9
# autoflake replacement: removes unused imports and variables
10
- ruff $SRC --select F401,F841 --fix --exclude " __init__.py" --isolated
10
+ ruff check $SRC --select F401,F841 --fix --exclude " __init__.py" --isolated
11
11
12
12
# sorts imports
13
- ruff $SRC --select I --fix --ignore D
13
+ ruff check $SRC --select I --fix --ignore D
14
14
black $SRC
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ _tasks:
133
133
{% if _copier_conf.os == 'windows' %}
134
134
echo "Auto-formatting not supported on Windows"
135
135
{% else %}
136
- {{ _copier_python }} -m ruff --select F401,F841 --fix \
136
+ {{ _copier_python }} -m ruff check --select F401,F841 --fix \
137
137
--exclude "__init__.py" --isolated \
138
138
steps pipelines run.py > /dev/null 2>&1 || true
139
139
{% endif %}
@@ -142,7 +142,7 @@ _tasks:
142
142
{% if _copier_conf.os == 'windows' %}
143
143
echo "Auto-formatting not supported on Windows"
144
144
{% else %}
145
- {{ _copier_python }} -m ruff --select I \
145
+ {{ _copier_python }} -m ruff check --select I \
146
146
--fix --ignore D \
147
147
steps pipelines run.py > /dev/null 2>&1 || true
148
148
{% endif %}
You can’t perform that action at this time.
0 commit comments