Skip to content

Commit

Permalink
[CI] - Support Binaries & CLI (#301)
Browse files Browse the repository at this point in the history
Adding additionals compilations jobs for the CLI and support binaries
  • Loading branch information
gambol99 committed Aug 6, 2022
1 parent 4eb46f3 commit 4aae317
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,32 @@ jobs:
- name: Unit Tests
run: make test

cli:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.18.1'
- name: Check CLI
run: make tnctl

binaries:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.18.1'
- name: Check Binaries
run: |
make step
make source
dependencies:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
Expand Down

0 comments on commit 4aae317

Please sign in to comment.