Skip to content

Update go.yml

Update go.yml #66

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
Test:
strategy:
matrix:
go-version: [1.17.x]
os: [ubuntu-latest]
igo: [yaegi, ssa, gomacro]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -tags ${{ matrix.igo }} -v ./...