Skip to content

Upgrade Go to 1.22 #348

Upgrade Go to 1.22

Upgrade Go to 1.22 #348

Workflow file for this run

name: Go
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: "ethconnect"
- uses: actions/checkout@v4
with:
repository: kaleido-io/ethbinding
path: "ethbinding"
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
check-latest: true
- name: Install solc
run: |
sudo curl -Lo /usr/local/bin/solc https://github.com/ethereum/solidity/releases/download/v0.7.6/solc-static-linux
sudo chmod 755 /usr/local/bin/solc
- name: Build and Test
env:
TEST_DEBUG_FLAGS: -v
run: cd ethconnect && make
- name: Upload coverage
run: bash <(curl -s https://codecov.io/bash)
docker-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: docker build .