From 7693400bc5b23d7900710880ababf4f12aac12e2 Mon Sep 17 00:00:00 2001 From: GLVS Kiriti Date: Fri, 12 Apr 2024 23:52:02 +0530 Subject: [PATCH] Feature: Added a job in ci which builds the all examples Signed-off-by: GLVS Kiriti --- .github/workflows/ci.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 23ef9f7..b095fde 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,4 +18,20 @@ jobs: go-version: '^1.19' - name: Run tests - run: go test ./... \ No newline at end of file + 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 +