Skip to content

chore(deps): update golangci/golangci-lint-action action to v6 #252

chore(deps): update golangci/golangci-lint-action action to v6

chore(deps): update golangci/golangci-lint-action action to v6 #252

Workflow file for this run

name: Build and Test C-Shared Library
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.18
- name: Build
run: go build -buildmode=c-shared -v -o signer.so ./cshared/...
- name: Test
run: go test -v ./cshared/...