Skip to content

Update schema for latest release #523

Update schema for latest release

Update schema for latest release #523

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
plugin: [rules, pipelines, openai]
steps:
- name: Checkout the branch
uses: actions/checkout@v2
- name: Set up go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Run ${{matrix.plugin}} test
run: go test -v ${{ format('./plugins/{0}', matrix.plugin) }}