...
1name: Middleware snapshot tests
2
3on:
4 push:
5 branches:
6 - main
7 pull_request:
8 branches:
9 - main
10 - 'feat-**'
11
12env:
13 EACHMODULE_CONCURRENCY: 2
14 SMITHY_GO_REPOSITORY: ${{ github.event.pull_request.head.repo.owner.login }}/smithy-go
15 GIT_PAT: ${{ secrets.CI_GIT_PAT}}
16
17jobs:
18 unix-tests:
19 name: Middleware snapshot tests
20 runs-on: ${{ matrix.os }}
21 strategy:
22 matrix:
23 os: [ubuntu-latest]
24 go-version: ["1.22"]
25 env:
26 EACHMODULE_SKIP: "internal"
27 steps:
28 - uses: actions/checkout@v2
29
30 - name: Set up Go
31 uses: actions/setup-go@v2
32 with:
33 go-version: ${{ matrix.go-version }}
34
35 - name: Find smithy-go
36 env:
37 RUNNER_TMPDIR: ${{ runner.temp }}
38 run: ./ci-find-smithy-go.sh
39
40 - name: Test
41 run: make test-ci-check-snapshot-service
View as plain text