Skip to content

Commit

Permalink
all: update Go version
Browse files Browse the repository at this point in the history
  • Loading branch information
FiloSottile committed Dec 10, 2023
1 parent c0501e4 commit 325f520
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion field/_asm/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module std/crypto/internal/edwards25519/field/_asm

go 1.18
go 1.20

require (
filippo.io/edwards25519 v0.0.0
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module filippo.io/edwards25519

go 1.17
go 1.20

0 comments on commit 325f520

Please sign in to comment.