Skip to content

Commit

Permalink
.github/workflows: add github action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusVanDerWijden committed Nov 24, 2023
1 parent bdf5e38 commit 90a0344
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
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
- 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

0 comments on commit 90a0344

Please sign in to comment.