Skip to content

Commit

Permalink
Fix build_and_test.yml
Browse files Browse the repository at this point in the history
### What's done:
- added actions/checkout because .git is not available on master
  • Loading branch information
nulls committed Dec 22, 2023
1 parent 8c76169 commit 32c75ac
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ jobs:
test-analysis-core: ${{ steps.calculate-dependencies.outputs.test-analysis-core }}
test-utils: ${{ steps.calculate-dependencies.outputs.test-utils }}
steps:
- id: checkout
if: ${{ github.event_name == 'push' }}
uses: actions/checkout@v3
with:
fetch-depth: 2
- id: git-changed-files
uses: tj-actions/changed-files@v40
with:
Expand Down

0 comments on commit 32c75ac

Please sign in to comment.