Skip to content

Commit bd94c14

Browse files
committed
install geth for ubuntu and macos
1 parent c396669 commit bd94c14

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/test.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,20 @@ jobs:
3939
with:
4040
rustflags: ""
4141

42+
# ────────────── Install geth ──────────────
43+
- name: Install Geth on Ubuntu
44+
if: matrix.os == 'ubuntu-24.04'
45+
run: |
46+
sudo add-apt-repository -y ppa:ethereum/ethereum
47+
sudo apt-get update
48+
sudo apt-get install -y ethereum
49+
50+
- name: Install Geth on macOS
51+
if: matrix.os == 'macos-14'
52+
run: |
53+
brew tap ethereum/ethereum
54+
brew install ethereum
55+
4256
- name: Format
4357
run: make format
4458

0 commit comments

Comments
 (0)