Skip to content

Commit

Permalink
Add pull-cli-build
Browse files Browse the repository at this point in the history
  • Loading branch information
nesmabadr committed Jan 15, 2024
1 parent 3aed195 commit 360bf79
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/pull-cli-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: pull-cli-build
on:
pull_request:
branches:
- main
- 'release-**'
workflow_dispatch:
jobs:
cli-build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout Kyma CLI
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
cache-dependency-path: 'go.sum'
- name: Run CLI Build
run: make build

0 comments on commit 360bf79

Please sign in to comment.