From 325f520de716c1d2d2b4e8dc2f82c7ccc5fac764 Mon Sep 17 00:00:00 2001 From: Filippo Valsorda Date: Sun, 10 Dec 2023 20:13:24 +0100 Subject: [PATCH] all: update Go version --- .github/workflows/test.yml | 6 +++--- field/_asm/go.mod | 2 +- go.mod | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 595465e..c20f671 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,12 +6,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: [ '1.17', '1.x' ] + go: [ '1.20', '1.x' ] steps: - uses: actions/setup-go@v2 with: { go-version: "${{ matrix.go }}" } - uses: actions/checkout@v2 - - run: go test -quickchecks 1 ./... - - run: go test -quickchecks 1 -tags purego ./... + - run: go test -short ./... + - run: go test -short -tags purego ./... - run: GOARCH=arm64 go test -c - run: GOARCH=arm go test -c diff --git a/field/_asm/go.mod b/field/_asm/go.mod index f4d14cb..4152bcd 100644 --- a/field/_asm/go.mod +++ b/field/_asm/go.mod @@ -1,6 +1,6 @@ module std/crypto/internal/edwards25519/field/_asm -go 1.18 +go 1.20 require ( filippo.io/edwards25519 v0.0.0 diff --git a/go.mod b/go.mod index aa99da0..78e04e9 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module filippo.io/edwards25519 -go 1.17 +go 1.20