Skip to content

Commit

Permalink
add x86 test run (#2528)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucix-aws committed Mar 4, 2024
1 parent 8e4d170 commit 322458b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,34 @@ jobs:
- name: Test
run: make ci-test-no-generate

x86-tests:
name: Unix x86 SDK tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
go-version: ["1.22"]
env:
GOARCH: "386"
steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}

- name: Find smithy-go
env:
RUNNER_TMPDIR: ${{ runner.temp }}
run: ./ci-find-smithy-go.sh

- name: Install golint
run: go install golang.org/x/lint/golint@latest

- name: Test
run: make unit

windows-tests:
name: Windows SDK Tests
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 322458b

Please sign in to comment.