Skip to content

Commit dda42e4

Browse files
authored
Merge pull request #2 from ipfs-force-community/simlecode-patch-1
Create go.yml
2 parents 6e476ad + 4e78adb commit dda42e4

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/go.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# This workflow will build a golang project
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
3+
4+
name: Go
5+
6+
on:
7+
push:
8+
branches: [ "main" ]
9+
pull_request:
10+
branches:
11+
- '**'
12+
13+
jobs:
14+
15+
build:
16+
runs-on: ubuntu-20.04
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- name: Set up Go
21+
uses: actions/setup-go@v4
22+
with:
23+
go-version: '1.22'
24+
25+
- name: dep
26+
run: git submodule update --init --recursive
27+
28+
- name: Build
29+
run: make build

0 commit comments

Comments
 (0)