Skip to content

Commit

Permalink
TOOLS: Fix CI 1.1
Browse files Browse the repository at this point in the history
.
  • Loading branch information
slali87 committed Oct 8, 2024
1 parent 6c9d991 commit 42e601b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
# - name: Run Valgrind
# if: runner.os == 'Linux'
# run: |
# cd Projects/${{ github.event.repository.name }}
# cd ${{ github.event.repository.name }}
# sudo apt install valgrind
# ./run.sh setDeb
# ./run.sh config
Expand All @@ -76,16 +76,16 @@ jobs:
# - name: Test coverage
# if: runner.os == 'Linux'
# run: |
# cd Projects/${{ github.event.repository.name }}
# cd ${{ github.event.repository.name }}
# sudo apt install lcov
# ./run.sh testCov
# - name: Analyse the code
# run: |
# cd Projects/${{ github.event.repository.name }}
# cd ${{ github.event.repository.name }}
# ./run.sh analyseCode
# - name: Format the code
# run: |
# cd Projects/${{ github.event.repository.name }}
# cd ${{ github.event.repository.name }}
# ./run.sh formatCode
- name: Install Doxygen on Linux
if: runner.os == 'Linux'
Expand All @@ -108,7 +108,7 @@ jobs:
cmake -P cmake/Doxygen.cmake ${{ env.CMD }}
- name: Check complexity
run: |
cd Projects/${{ github.event.repository.name }}
cd ${{ github.event.repository.name }}
pip install lizard
cmake -P .\cmake\Complex.cmake
- name: Upload artifacts
Expand Down

0 comments on commit 42e601b

Please sign in to comment.