Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .github/actions/merge-eip-branches/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ runs:
fi
done

echo "Running static checks on merged branch"
uvx --with=tox-uv tox -e static

echo "All EIP branches merged successfully"

- name: Push devnet branch
Expand Down
3 changes: 3 additions & 0 deletions .github/actions/rebase-eip-branch/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ runs:
exit 1
fi

echo "Running static checks on rebased branch"
uvx --with=tox-uv tox -e static

echo "Rebase successful"

- name: Push rebased branch
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/eip-rebase.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup uv
uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5.4.1

- name: Rebase EIP branch onto fork
uses: ./.github/actions/rebase-eip-branch
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/update-devnet-branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ jobs:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup uv
uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5.4.1

- name: Merge EIP branches into devnet
uses: ./.github/actions/merge-eip-branches
with:
Expand Down
Loading
Loading