Skip to content

Commit a9c02ae

Browse files
authored
Merge pull request #21 from ppc64le-cloud/Madhan-SWE-patch-1-1
Github actions added
2 parents 44e43fa + 53a02d9 commit a9c02ae

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/go.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Go
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
16+
- name: Set up Go
17+
uses: actions/setup-go@v2
18+
with:
19+
go-version: 1.17
20+
21+
- name: Build
22+
run: |
23+
mkdir -p bin
24+
make bin/powervs-csi-driver

0 commit comments

Comments
 (0)