mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-28 07:36:44 +00:00
15 lines
329 B
YAML
15 lines
329 B
YAML
name: CI
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install Go
|
|
uses: actions/setup-go@v2.1.3
|
|
with:
|
|
go-version: 1.16.7
|
|
- name: "Build binaries"
|
|
run: make all
|
|
- name: "Run tests"
|
|
run: make test
|