Skip to content

Commit

Permalink
ci: move checkout to testing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Long committed Sep 13, 2024
1 parent a2ee887 commit 30fd2bc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
description: 'unit test results'
value: ${{jobs.unit-tests.result}}
intigration-tests:
description: 'unit test results'
description: 'intigration test results'
value: ${{jobs.integration-tests.result}}
workflow_dispatch: {}

Expand Down Expand Up @@ -40,6 +40,10 @@ jobs:
timeout-minutes: 30
needs: [unit-tests]
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install Shiva
uses: ./.github/workflows/use-shiva.yml
with:
Expand Down

0 comments on commit 30fd2bc

Please sign in to comment.