Skip to content

Bump github.com/ethereum/go-ethereum from 1.14.8 to 1.16.8 in /dcrdex #482

Bump github.com/ethereum/go-ethereum from 1.14.8 to 1.16.8 in /dcrdex

Bump github.com/ethereum/go-ethereum from 1.14.8 to 1.16.8 in /dcrdex #482

Workflow file for this run

name: Build and Test
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
name: Go CI
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.24", "1.25"]
steps:
- name: Check out source
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Set up Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: ${{ matrix.go }}
- name: Install Linters
run: "go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.64.8"
- name: Build
run: go build ./...
- name: Lint
run: |
golangci-lint run
- name: Test
run: go test -v ./...