Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanwi committed Apr 30, 2024
1 parent e9ccfb6 commit 64fae3b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
5 changes: 0 additions & 5 deletions .github/actions/test-ruby/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ inputs:
required: false
description: Reviewdog report
default: 'false'
RUN_TESTS:
required: false
default: 'true'
description: Whenever you wanna run tests.

runs:
using: "composite"
Expand Down Expand Up @@ -123,7 +119,6 @@ runs:
shell: bash

- name: Run Tests
if: inputs.RUN_TESTS != 'false'
run: |
bundle exec rspec -f j -o tmp/rspec_results.json -f p
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
ref: ${{ inputs.REF || github.ref }}
fetch-depth: 0

- name: Update git
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ci-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0

- name: Update git
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ jobs:

CHECK:
name: CI
uses: signalwire/actions-template/.github/workflows/ci-check.yml@ryanwi/debug-container-test
uses: signalwire/actions-template/.github/workflows/ci-check.yml@main
with:
ENVIRONMENT: ${{ inputs.ENVIRONMENT }}
PROJECT_NAME: ${{ inputs.PROJECT_NAME }}
Expand Down Expand Up @@ -237,7 +237,7 @@ jobs:
BUILD:
name: BUILD
needs: CHECK
uses: signalwire/actions-template/.github/workflows/ci-build.yml@ryanwi/debug-container-test
uses: signalwire/actions-template/.github/workflows/ci-build.yml@main
with:
ENVIRONMENT: ${{ inputs.ENVIRONMENT }}
PROJECT_NAME: ${{ inputs.PROJECT_NAME }}
Expand Down

0 comments on commit 64fae3b

Please sign in to comment.