Skip to content

Commit

Permalink
fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
JuHyung-Son committed Aug 5, 2024
1 parent 0d72974 commit 6c8aa1a
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/check_compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@ name: check compatibility

on:
schedule:
- cron: '0 9 * * *'
- cron: '0 0 * * *'
workflow_dispatch:
inputs:
working-directory:
required: true
default: 'libs/upstage'

env:
WORKING_DIRECTORY: ${{ github.event.inputs.working-directory || 'libs/upstage' }}

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -24,23 +27,23 @@ jobs:
uses: ./.github/workflows/_test.yml
secrets: inherit
with:
working-directory: ${{ inputs.working-directory }}
working-directory: ${{ env.WORKING_DIRECTORY }}

compile-integration-tests:
name: compile integration test
needs: [build]
uses: ./.github/workflows/_compile_integration_test.yml
secrets: inherit
with:
working-directory: ${{ inputs.working-directory }}
working-directory: ${{ env.WORKING_DIRECTORY }}

integration_test:
name: integration test
needs: [build]
uses: ./.github/workflows/_integration_test.yml
secrets: inherit
with:
working-directory: ${{ inputs.working-directory }}
working-directory: ${{ env.WORKING_DIRECTORY }}

ci_success:
name: "CI Success"
Expand Down

0 comments on commit 6c8aa1a

Please sign in to comment.