Bump github.com/ethereum/go-ethereum from 1.13.5 to 1.13.12 #46
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: | |
- main | |
- release-* | |
pull_request: | |
branches: | |
- main | |
- release-* | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: styfle/[email protected] | |
name: Cancel Outdated Builds | |
with: | |
all_but_latest: true | |
access_token: ${{ github.token }} | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '^1.21' | |
- name: Install Just | |
run: | | |
wget https://github.com/casey/just/releases/download/1.14.0/just-1.14.0-x86_64-unknown-linux-musl.tar.gz | |
tar -vxf just-1.14.0-x86_64-unknown-linux-musl.tar.gz just | |
sudo cp just /usr/bin/just | |
- uses: actions/checkout@v4 | |
name: Checkout Repository | |
- name: Go Mod Tidy | |
run: | | |
go mod tidy | |
git diff --exit-code | |
- name: Test | |
run: just test |