Skip to content

Commit

Permalink
ci: add build.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
bendanzhentan committed Nov 21, 2023
1 parent e899449 commit cf8ed08
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Build

on:
push:
# branches: [ main ]
# pull_request:
# branches: [ main ]

jobs:

'build-go':
name: make build-go
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.21

- name: Check out
uses: actions/checkout@v2

- name: Make build-go
run: make build-go

'build-solidity':
name: make build-solidity
runs-on: ubuntu-latest
steps:

- name: Check out
uses: actions/checkout@v2

- name: Make build-solidity
run: make build-solidity

0 comments on commit cf8ed08

Please sign in to comment.