Skip to content

Commit

Permalink
update go.yml (#137)
Browse files Browse the repository at this point in the history
* Update README.md

* Update README.md

* test

* test10

* TEST1

* TEST2

* TEST3

* TEST4

* TEST5

* TEST6

* Create go.yml

* Update go.yml

* Update go.yml

* Update go.yml

* Update README.md

* Update README.md

* Update go.yml

* Update go.yml

---------

Co-authored-by: Your Name <[email protected]>
  • Loading branch information
jirarobot and Your Name authored Oct 12, 2023
1 parent 4d92f00 commit ced0cb7
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: Go

on: [push , pull_request]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'

# - name: Run init
# run: go run build/ci.go lint

- name: Build
run: make geth

- name: Test
run: go test -timeout=40m -tags=ckzg -p 1 ./...

0 comments on commit ced0cb7

Please sign in to comment.