Skip to content

Merge pull request #84 from kcalvinalvin/2023-11-06-update-utreexo-lib #266

Merge pull request #84 from kcalvinalvin/2023-11-06-update-utreexo-lib

Merge pull request #84 from kcalvinalvin/2023-11-06-update-utreexo-lib #266

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
build:
name: Go CI
runs-on: ubuntu-latest
strategy:
matrix:
go: [1.18, 1.19]
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Check out source
uses: actions/checkout@v3
- name: Install Linters
run: "curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.54.2"
- name: Build
run: go build ./...
- name: Test
run: sh ./goclean.sh