Skip to content

Commit

Permalink
Some debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
DilumAluthge authored Jan 13, 2024
1 parent 2f049d8 commit 1e8b598
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 @@ -24,10 +24,14 @@ jobs:
arch:
- x64
steps:
- run: |
echo ${{ github.head_ref }}
echo ${{ github.repository }}
echo ${{ github.event.pull_request.head.repo.full_name }})
- name: Set integration test flag
if: (github.head_ref == "dev") && (github.repository == github.event.pull_request.head.repo.full_name)
run: |
echo "MLJ_TEST_INTEGRATION=true" >> "${GITHUB_ENV:?}"
if: (${{ github.head_ref }} == "dev") && (${{ github.repository }} == ${{ github.event.pull_request.head.repo.full_name }})
- name: Verify the value of the integration test flag
run: |
echo "MLJ_TEST_INTEGRATION is ${MLJ_TEST_INTEGRATION}"
Expand Down

0 comments on commit 1e8b598

Please sign in to comment.