Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/check-sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,9 @@ jobs:
- name: Checkout PR branch in async-substrate-interface
working-directory: ${{ github.workspace }}/async-substrate-interface
run: |
git fetch origin ${{ github.event.pull_request.head.ref }}
git checkout ${{ github.event.pull_request.head.ref }}
BRANCH="${{ github.event.pull_request.head.ref || github.ref_name }}"
git fetch origin $BRANCH
git checkout $BRANCH
echo "Current branch: $(git rev-parse --abbrev-ref HEAD)"

- name: Install async-substrate-interface with dev dependencies
Expand Down
Loading