Skip to content

chore: prepare v4.0.3 #125

chore: prepare v4.0.3

chore: prepare v4.0.3 #125

name: Simulation Tests
on:
pull_request:
jobs:
simulation-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: Setup SSH
run: |
mkdir -p ~/.ssh
echo "${{ secrets.GITAUTH }}" | base64 -d > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan github.com >> ~/.ssh/known_hosts
export GOPRIVATE=github.com/circlefin/noble-cctp
git config --global --add url."[email protected]:circlefin/noble-cctp.git".insteadOf "https://github.com/circlefin/noble-cctp"
- name: Run Unit Tests
run: go test -bench BenchmarkSimulation ./app