Skip to content

Commit 3d852fe

Browse files
committed
Try again
1 parent 1e08bf6 commit 3d852fe

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,10 @@ jobs:
3030
python -m pip install --upgrade pip
3131
python -m pip install poetry
3232
poetry install
33+
- name: Build package
34+
run: |
3335
poetry build
34-
chmod +x conf/run_linters.sh
35-
conf/run_linters.sh
36+
continue-on-error: false
3637
# Linting is done in the run_linters.sh script
3738

3839
- name: Prep tests
@@ -49,12 +50,13 @@ jobs:
4950
# conf/run_tests.sh
5051
# echo "--------- UT report ---------"; cat build/xunit*.xml
5152
# echo "---------Coverage report ---------"; cat build/coverage*.xml
52-
# - name: Run linters
53-
# working-directory: .
54-
# run: |
55-
# chmod +x conf/run_linters.sh
56-
# conf/run_linters.sh
57-
#- name: Cache SonarQube packages
53+
- name: Run linters
54+
working-directory: .
55+
run: |
56+
python -m install ruff pylint flake8
57+
chmod +x conf/run_linters.sh
58+
conf/run_linters.sh
59+
# - name: Cache SonarQube packages
5860
# uses: actions/cache@v4
5961
# with:
6062
# path: ./.sonar

0 commit comments

Comments
 (0)