Skip to content

Commit 06ad77f

Browse files
committed
add go.mod and update CI
1 parent a0d1b2d commit 06ad77f

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,12 @@ on: [push, pull_request]
22
name: Test
33
jobs:
44
test:
5-
strategy:
6-
matrix:
7-
go-version: [1.15.x]
8-
platform: [ubuntu-18.04]
9-
runs-on: ${{ matrix.platform }}
5+
runs-on: ubuntu-18.04
106
steps:
117
- name: Install Go
128
uses: actions/setup-go@v2
139
with:
14-
go-version: ${{ matrix.go-version }}
10+
go-version: 1.23.x
1511
- uses: actions/checkout@v2
1612
with:
1713
path: './src/github.com/kevinburke/tss'

go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/kevinburke/tss
2+
3+
go 1.20

0 commit comments

Comments
 (0)