Skip to content

feat(IProfile, ICandidateManager, ICoinbaseExecution, IRoninValidator… #722

feat(IProfile, ICandidateManager, ICoinbaseExecution, IRoninValidator…

feat(IProfile, ICandidateManager, ICoinbaseExecution, IRoninValidator… #722

Workflow file for this run

name: test
on:
push:
branches:
- mainnet
- testnet
- "release/*"
- "feature/*"
- "features/*"
pull_request:
branches:
- mainnet
- testnet
- "release/*"
- "feature/*"
- "features/*"
- "implement-feature/*"
env:
FOUNDRY_PROFILE: ci
jobs:
check-unit-test:
strategy:
fail-fast: true
name: Unit test
runs-on: [self-hosted, dockerize]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Go 1.19
uses: actions/setup-go@v4
with:
go-version: "1.19"
- name: Setup external packages
run: |
sudo apt-get update
sudo apt-get install -y jq
sudo apt-get install -y gcc
sudo apt-get install -y wget
sudo wget https://github.com/mikefarah/yq/releases/download/v4.34.1/yq_linux_amd64 -O /usr/local/bin/yq
sudo chmod +x /usr/local/bin/yq
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Install package with soldeer
run: forge soldeer install
- name: Build random beacon binary
run: |
rm -rf temp && mkdir temp && cd temp
git clone https://github.com/ronin-chain/ronin-random-beacon.git
cd ronin-random-beacon && ls
go build -o ronin-random-beacon && ls
cp ./ronin-random-beacon ../../bin/
cd ../../
rm -rf temp
- name: Run Forge build
run: |
forge --version
forge build
id: build
- name: Run Forge tests
run: |
forge test --no-match-path '*forking/*' -vvv
id: test