Skip to content

Update lotus to 1.24.1 #111

Update lotus to 1.24.1

Update lotus to 1.24.1 #111

Workflow file for this run

name: Build and check
on:
- push
jobs:
build:
runs-on: zondax-runners
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- uses: actions/setup-go@v2
with:
go-version: '^1.20'
- name: Install dependencies
run: sudo apt update && sudo apt install -yy build-essential
- name: Build
run: make build
test:
runs-on: zondax-runners
environment: DEVNET
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- uses: actions/setup-go@v2
with:
go-version: '^1.20'
- name: Install dependencies
run: sudo apt update && sudo apt install -yy build-essential
- name: Test
run: make test
env:
LOTUS_URL: ${{ secrets.LOTUS_URL }}
AUTH_JWT: ${{ secrets.AUTH_JWT }}