Skip to content

always update toolchain directive to build plugins with the go version used to build scenarigo #480

always update toolchain directive to build plugins with the go version used to build scenarigo

always update toolchain directive to build plugins with the go version used to build scenarigo #480

Workflow file for this run

name: run-examples
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
go-version: [stable, oldstable]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- name: Checkout code
uses: actions/checkout@v4
- name: Build
run: make build
- name: Run examples
run: make test/examples