Skip to content

fix(deps): update module github.com/emmansun/gmsm to v0.29.1 #289

fix(deps): update module github.com/emmansun/gmsm to v0.29.1

fix(deps): update module github.com/emmansun/gmsm to v0.29.1 #289

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.17', '1.16', '1.15' ]
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- uses: actions/checkout@v3
- name: Tidy
run: |
rm -f go.sum
go mod tidy
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...