2024-03-22 12:57:03 +00:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- release/*
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
2024-04-05 16:45:04 +00:00
|
|
|
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
2024-03-22 12:57:03 +00:00
|
|
|
|
2024-05-28 10:51:05 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
2024-04-02 13:22:09 +00:00
|
|
|
|
2024-03-22 12:57:03 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
submodules: 'recursive'
|
2024-04-02 13:22:09 +00:00
|
|
|
- uses: ./.github/actions/install-system-dependencies
|
2024-03-22 12:57:03 +00:00
|
|
|
- uses: ./.github/actions/install-go
|
|
|
|
- run: make deps lotus
|