all: update Go version

This commit is contained in:
Filippo Valsorda 2023-12-10 20:13:24 +01:00
parent c0501e42ed
commit 325f520de7
3 changed files with 5 additions and 5 deletions

View file

@ -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

View file

@ -1,6 +1,6 @@
module std/crypto/internal/edwards25519/field/_asm
go 1.18
go 1.20
require (
filippo.io/edwards25519 v0.0.0

2
go.mod
View file

@ -1,3 +1,3 @@
module filippo.io/edwards25519
go 1.17
go 1.20