From e6e6e1f9796e9c2116ee5878f8ab7bc14659cd35 Mon Sep 17 00:00:00 2001 From: David Thorpe Date: Sat, 7 Jan 2023 19:38:49 +0100 Subject: [PATCH] Added test script --- .github/workflows/bindings.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/bindings.yml diff --git a/.github/workflows/bindings.yml b/.github/workflows/bindings.yml new file mode 100644 index 0000000..1bccf59 --- /dev/null +++ b/.github/workflows/bindings.yml @@ -0,0 +1,17 @@ +name: Bindings Tests +on: + push: + paths: + - bindings/go/** + +jobs: + ubuntu-latest: + runs-on: ubuntu-latest + steps: + - uses: actions/setup-go@v3 + with: + go-version: '^1.19' + - uses: actions/checkout@v1 + - run: | + cd bindings/go + make test