Skip to content

require Viceroy 0.6.1 and remove dynamic backend test workaround #199

require Viceroy 0.6.1 and remove dynamic backend test workaround

require Viceroy 0.6.1 and remove dynamic backend test workaround #199

Workflow file for this run

name: Build Examples
on: [push]
jobs:
build-examples:
strategy:
matrix:
go-version: ['^1.20.0', '^1.19.0']
tinygo-version: ['0.28.1', '0.27.0']
runs-on: ubuntu-latest
steps:
- name: Checkout fastly/compute-sdk-go
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Install TinyGo
uses: ./.github/actions/install-tinygo
with:
tinygo-version: ${{ matrix.tinygo-version }}
- name: Build examples
run: |
for i in _examples/*; do
echo ${GITHUB_WORKSPACE}/$i
cd ${GITHUB_WORKSPACE}/$i && tinygo build -target=wasi
done