Skip to content

Commit

Permalink
Create testBuilder.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bishal7679 committed May 13, 2023
1 parent 02ae631 commit c6ae302
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/testBuilder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Testing Build process
on:
push:
paths:
- 'apis/api/**'
- 'cli/**'
branches: [ main ]
pull_request:
paths:
- 'apis/api/**'
- 'cli/**'
branches: [ main ]

jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.19.0' # The Go version to download (if necessary) and use.
- run: go version
- name: Build and install the latest version
run: |
make install_linux
ksapify -h
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.19.1' # The Go version to download (if necessary) and use.
- run: go version
- name: Build and install the latest version on intel chip
run: |
make install_macos
ksapify -h

0 comments on commit c6ae302

Please sign in to comment.