Skip to content

Bump to lotus v1.24.0-rc5 #98

Bump to lotus v1.24.0-rc5

Bump to lotus v1.24.0-rc5 #98

Workflow file for this run

name: Build and check
on:
- push
jobs:
build:
runs-on: [self-hosted, linux, x64]
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: [self-hosted, linux, x64]
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 }}