Skip to content

chore: replace blob_from_hex with bytes_from_hex #15

chore: replace blob_from_hex with bytes_from_hex

chore: replace blob_from_hex with bytes_from_hex #15

name: Test Go bindings
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Run compile script
run: |
chmod +x ./scripts/compile.sh
./scripts/compile.sh
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Run Go tests
run: go test ./...
working-directory: bindings/golang