Skip to content

Pin 1.23.1 dependencies #13

Pin 1.23.1 dependencies

Pin 1.23.1 dependencies #13

Workflow file for this run

name: Build extensibility examples
on:
pull_request:
paths:
- 'extensibility/**'
jobs:
extensibility-test:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Print build information
run: 'echo head_ref: ${{ github.head_ref }}, ref: ${{ github.ref }}, os: ${{ matrix.os }}'
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v3.0.0
with:
go-version: '1.20'
- name: build
working-directory: extensibility
run: go build ./...