Skip to content

Commit f63ffd1

Browse files
authored
feat: skip 32 bit tests in go-test by default (#123)
1 parent fd7890b commit f63ffd1

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/go-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,8 @@ jobs:
117117
- name: Run tests (32 bit)
118118
# can't run 32 bit tests on OSX.
119119
if: matrix.os != 'macos' &&
120-
fromJSON(steps.config.outputs.json).skip32bit != true &&
120+
contains(steps.config.outputs.json, '"skip32bit"') &&
121+
fromJSON(steps.config.outputs.json).skip32bit == false &&
121122
contains(fromJSON(steps.config.outputs.json).skipOSes, matrix.os) == false
122123
uses: protocol/multiple-go-modules@v1.4
123124
env:

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## Unreleased
8+
### Changed
9+
- skip 32-bit tests in the `go-test` workflow by default (they can still be enabled by setting `skip32bit` to `false` in the `go-test-config.json`)
810

911
## [1.0.28] - 2025-07-16
1012
### Added

0 commit comments

Comments
 (0)