Skip to content

Correct conflicts and unit test failures in v3 branch #63

Correct conflicts and unit test failures in v3 branch

Correct conflicts and unit test failures in v3 branch #63

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
go: [ 1.19.x, 1.20.x ]
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Check out code
uses: actions/checkout@v2
- name: Build
run: |
sudo apt-get update
sudo apt-get -y install libsofthsm2
go build -v ./...
- name: Test
run: |
sudo apt-get update
sudo apt-get -y install libsofthsm2
go test -v ./...