Skip to content

Commit

Permalink
Feature: Added a job in ci which builds the all examples
Browse files Browse the repository at this point in the history
Signed-off-by: GLVS Kiriti <[email protected]>
  • Loading branch information
GLVSKiriti committed Apr 12, 2024
1 parent 2eb4a31 commit 7693400
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,20 @@ jobs:
go-version: '^1.19'

- name: Run tests
run: go test ./...
run: go test ./...

build-example-plugins:
runs-on: ubuntu-latest

steps:
- name: Checkout plugin-sdk-go
uses: actions/checkout@v3

- name: Setup Golang
uses: actions/setup-go@v4
with:
go-version: '^1.19'

- name: Build all example plugins
run: make examples

0 comments on commit 7693400

Please sign in to comment.