Skip to content

Commit

Permalink
Add Go bindings tests to CI
Browse files Browse the repository at this point in the history
Signed-off-by: Piotr Jastrzebski <[email protected]>
  • Loading branch information
haaawk committed Aug 9, 2023
1 parent 301d81e commit 27fc3f9
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/golang-bindings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Makefile 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: Build crates
run: cd crates && cargo build

- name: Run Go bindings tests
run: cd bindings/go && go test

0 comments on commit 27fc3f9

Please sign in to comment.