Skip to content

Commit

Permalink
disable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
llbartekll committed Jun 19, 2024
1 parent e0c0091 commit 9756dd2
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,24 @@ jobs:
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
type: [unit-tests]
# matrix:
# type: [unit-tests]

steps:
- uses: actions/checkout@v3
with:
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
Expand All @@ -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
Expand All @@ -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

0 comments on commit 9756dd2

Please sign in to comment.