Skip to content

feat: unified hardfork upgrade system with CollectUpgrades registry #233

feat: unified hardfork upgrade system with CollectUpgrades registry

feat: unified hardfork upgrade system with CollectUpgrades registry #233

Workflow file for this run

name: dev-ci
on:
pull_request:
branches:
- dev
jobs:
build_test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.23.12
- name: Build StableNet
run: make gstable
lint_test:
strategy:
fail-fast: false
matrix:
version: [1.23.12]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.version }}
- name: Check Lint
run: make lint
unit_test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.23.12
- name: Check golang Test Cases
run: make test-short