Skip to content

Commit 322458b

Browse files
authored
add x86 test run (#2528)
1 parent 8e4d170 commit 322458b

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/go.yml

+28
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,34 @@ jobs:
4141
- name: Test
4242
run: make ci-test-no-generate
4343

44+
x86-tests:
45+
name: Unix x86 SDK tests
46+
runs-on: ${{ matrix.os }}
47+
strategy:
48+
matrix:
49+
os: [ubuntu-latest]
50+
go-version: ["1.22"]
51+
env:
52+
GOARCH: "386"
53+
steps:
54+
- uses: actions/checkout@v2
55+
56+
- name: Set up Go
57+
uses: actions/setup-go@v2
58+
with:
59+
go-version: ${{ matrix.go-version }}
60+
61+
- name: Find smithy-go
62+
env:
63+
RUNNER_TMPDIR: ${{ runner.temp }}
64+
run: ./ci-find-smithy-go.sh
65+
66+
- name: Install golint
67+
run: go install golang.org/x/lint/golint@latest
68+
69+
- name: Test
70+
run: make unit
71+
4472
windows-tests:
4573
name: Windows SDK Tests
4674
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)