Skip to content

Feature: Added a job in ci which builds the all examples #31

Feature: Added a job in ci which builds the all examples

Feature: Added a job in ci which builds the all examples #31

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
run-tests:
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: Run tests
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