Skip to content
This repository was archived by the owner on May 21, 2024. It is now read-only.

Commit 66a010d

Browse files
committed
Add Github workflow
1 parent 5dba666 commit 66a010d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/geth-tests.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Geth Tests
2+
3+
on: push
4+
5+
jobs:
6+
run-tests:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout repo
10+
uses: actions/checkout@v2
11+
- name: Set up Golang
12+
uses: actions/setup-go@v3
13+
with:
14+
go-version: ">=1.17.0"
15+
- name: Run geth tests
16+
run: go test `go list ./... | grep -v mobile`

0 commit comments

Comments
 (0)