Skip to content

Commit

Permalink
disable unit test checker
Browse files Browse the repository at this point in the history
  • Loading branch information
pvelesko committed Sep 26, 2022
1 parent a9ef332 commit c77b96b
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/check-unit-tests.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# Workflow syntax:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
name: unit-test-checker
# name: unit-test-checker

on:
pull_request:
paths-ignore: "docs/**"
# on:
# pull_request:
# paths-ignore: "docs/**"

jobs:
unit-test-checker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Run unit test checking script
run: ./.github/scripts/check_unit_tests.sh `git log -1 HEAD~1 | awk 'NR==1{print $2}'`
shell: bash
# jobs:
# unit-test-checker:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# with:
# ref: ${{ github.event.pull_request.head.sha }}
# fetch-depth: 0
# - name: Run unit test checking script
# run: ./.github/scripts/check_unit_tests.sh `git log -1 HEAD~1 | awk 'NR==1{print $2}'`
# shell: bash

0 comments on commit c77b96b

Please sign in to comment.