mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
49 lines
915 B
YAML
49 lines
915 B
YAML
name: go-ethereum workflow
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- '**'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.20.5
|
|
- name: Lint
|
|
run: go run build/ci.go lint
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
- name: Build
|
|
run: go run build/ci.go install -dlgo
|
|
|
|
test:
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest]
|
|
|
|
needs: lint
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.20.5
|
|
- name: Install Submodules
|
|
run: git submodule update --init --depth 1 --recursive
|
|
- name: Test
|
|
run: go run build/ci.go test -dlgo
|
|
|