Move Version check to the top

This commit is contained in:
Matthias
2024-03-29 10:26:44 +01:00
parent 01bb7706e4
commit afe3d3ebda

View File

@@ -62,6 +62,10 @@ jobs:
pip install -r requirements-dev.txt pip install -r requirements-dev.txt
pip install -e . pip install -e .
- name: Check for version alignment
run: |
build_helpers/freqtrade_client_version_align.py
- name: Tests - name: Tests
run: | run: |
pytest --random-order --cov=freqtrade --cov-config=.coveragerc pytest --random-order --cov=freqtrade --cov-config=.coveragerc
@@ -108,10 +112,6 @@ jobs:
run: | run: |
ruff check --output-format=github . ruff check --output-format=github .
- name: Check for version alignment
run: |
build_helpers/freqtrade_client_version_align.py
- name: Mypy - name: Mypy
run: | run: |
mypy freqtrade scripts tests mypy freqtrade scripts tests