We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e4d170 commit 322458bCopy full SHA for 322458b
.github/workflows/go.yml
@@ -41,6 +41,34 @@ jobs:
41
- name: Test
42
run: make ci-test-no-generate
43
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
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
72
windows-tests:
73
name: Windows SDK Tests
74
runs-on: ${{ matrix.os }}
0 commit comments