Skip to content

TinyGo Support and Cloudflare Workers Example #94

TinyGo Support and Cloudflare Workers Example

TinyGo Support and Cloudflare Workers Example #94

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
go:
name: Test Go packages
runs-on: ubuntu-latest
container:
image: golang:alpine
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Test all modules
run: |
apk add --no-cache bash gcc g++ openssl-dev
export GOFLAGS=-buildvcs=false
go work init
go work use -r .
go test -v ./...
go test -v ./examples/...
go test -v ./fsim/...
go test -v ./sqlite/...
go test -v ./tpm/...