Skip to content

bump dependencies, better config validation, update ci/cd #139

bump dependencies, better config validation, update ci/cd

bump dependencies, better config validation, update ci/cd #139

Workflow file for this run

name: test
on:
push:
branches: [ "master", "dev" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
run_tests:
runs-on: ubuntu-latest
steps:
- name: clone repo
uses: actions/checkout@v3
- name: download and install
uses: actions/setup-go@v5
with:
go-version: '1.24.5'
- name: install protoc (protobuf)
uses: arduino/setup-protoc@v3
with:
version: "31.1"
include-pre-releases: false
- name: chmod to allow run script
run: chmod +x ./scripts/install_deps
- name: install dependencies
run: ./scripts/install_deps
- name: go tests
env:
SNET_ETHEREUM_JSON_RPC_HTTP_ENDPOINT: ${{secrets.ETH_JSON_HTTP_ENDPOINT}}
run: go test -v ./...