Set FIPS-approved TLS curve preferences when the FIPS module is activ… #101
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Response snapshot tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| - 'feat-**' | |
| permissions: | |
| contents: read | |
| env: | |
| EACHMODULE_CONCURRENCY: 2 | |
| SMITHY_GO_REPOSITORY: ${{ github.event.pull_request.head.repo.owner.login }}/smithy-go | |
| GIT_PAT: ${{ secrets.CI_GIT_PAT}} | |
| jobs: | |
| unix-tests: | |
| name: Response snapshot tests | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| go-version: ["1.24"] | |
| env: | |
| EACHMODULE_SKIP: "internal" | |
| 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: Test | |
| run: make test-ci-check-response-snapshot-service |