Skip to content

Add Go bindings tests to CI #5

Add Go bindings tests to CI

Add Go bindings tests to CI #5

Workflow file for this run

name: Go bindings tests CI
on:
push:
branches: [ "main" ]
pull_request:
merge_group:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/[email protected]
- name: get TCL
run: sudo apt-get install -y tcl8.6-dev
- name: Install Protoc
uses: arduino/setup-protoc@v2
- name: Install Wasmpack
uses: jetli/[email protected]
with:
version: 'latest'
- name: configure
run: ./configure
- name: Run make
run: make all
- name: Build crates
run: cd crates && cargo build
- name: Run Go bindings tests
run: cd crates/bindings/go && go test