From 9756dd2a36f6b1f7a1df2a1187f17618464d903c Mon Sep 17 00:00:00 2001 From: llbartekll Date: Wed, 19 Jun 2024 10:05:12 +0200 Subject: [PATCH] disable tests --- .github/workflows/ci.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9671466..78ebb05 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,8 +16,8 @@ jobs: timeout-minutes: 15 strategy: fail-fast: false - matrix: - type: [unit-tests] + # matrix: + # type: [unit-tests] steps: - uses: actions/checkout@v3 @@ -25,15 +25,15 @@ jobs: ref: ${{ github.event.pull_request.head.sha }} # Package Unit tests - - name: Run tests - if: matrix.type == 'unit-tests' - shell: bash - run: make unit_tests + # - name: Run tests + # if: matrix.type == 'unit-tests' + # shell: bash + # run: make unit_tests # - name: Danger # env: # DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} -# run: +# run: # rm -rf xcov_report | # /opt/homebrew/opt/ruby/bin/bundle install | # /opt/homebrew/opt/ruby/bin/bundle exec danger @@ -42,7 +42,7 @@ jobs: uses: mikepenz/action-junit-report@v3 if: success() || failure() with: - check_name: ${{ matrix.type }} junit report + check_name: junit report report_paths: 'test_results/report.junit' - name: Zip test artifacts @@ -54,6 +54,6 @@ jobs: if: always() uses: actions/upload-artifact@v3 with: - name: ${{ matrix.type }} test_results + name: test_results path: ./artifacts.zip if-no-files-found: warn