ensure mantle sepolia metatx & eth deposit upgrade time #167
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Make Build | |
on: | |
pull_request: | |
branches: | |
- main | |
- develop | |
- 'release/**' | |
paths: | |
- '**' | |
jobs: | |
CheckMakeBuild: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@main | |
with: | |
submodules: recursive | |
token: ${{ secrets.PAT }} | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.20' | |
- name: Checking Make Build | |
run: | | |
sudo apt update | |
sudo apt install -y build-essential coreutils libuv1 libudev-dev libusb-1.0-0-dev | |
make geth | |