We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c396669 commit bd94c14Copy full SHA for bd94c14
.github/workflows/test.yml
@@ -39,6 +39,20 @@ jobs:
39
with:
40
rustflags: ""
41
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
53
+ brew tap ethereum/ethereum
54
+ brew install ethereum
55
56
- name: Format
57
run: make format
58
0 commit comments