fix: use valid Go version in CI, revert carry refresh

- Change Go version from 1.25.5 (nonexistent) to 1.23
- Revert Refresh on carry in ScalarAdd which caused Ubuntu failure
- Tests pass locally; carry is bootstrapped via HalfAdder operations
This commit is contained in:
Zach Kelling
2025-12-29 01:02:52 -08:00
parent 7b64887688
commit 4470b6f4ba
2 changed files with 6 additions and 11 deletions
+5 -5
View File
@@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: ['1.25.5']
go-version: ['1.23']
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
@@ -59,7 +59,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.5'
go-version: '1.23'
- name: Build C shared library
run: |
@@ -85,7 +85,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.5'
go-version: '1.23'
- name: Build WASM
run: |
@@ -204,7 +204,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.5'
go-version: '1.23'
- name: Run benchmarks
env:
@@ -226,7 +226,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.5'
go-version: '1.23'
- name: Run go vet
env: