rm required/optional/threshold from SendMessage opts #1180
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: Services CCV Tests | |
on: | |
push: | |
defaults: | |
run: | |
working-directory: build/devenv | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.sha }} | |
cancel-in-progress: true | |
jobs: | |
services-tests: | |
permissions: | |
id-token: write | |
contents: read | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v5 | |
with: | |
fetch-depth: 0 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1 | |
- name: Install Just | |
uses: extractions/setup-just@e33e0265a09d6d736e2ee1e0eb685ef1de4669ff # v3 | |
with: | |
just-version: '1.40.0' | |
- name: Authenticate to AWS ECR | |
uses: ./.github/actions/aws-ecr-auth | |
with: | |
role-to-assume: ${{ secrets.CCV_IAM_ROLE }} | |
aws-region: us-east-1 | |
registry-type: public | |
- name: Set up Go | |
uses: actions/setup-go@v6 # v6 | |
with: | |
cache: true | |
go-version-file: build/devenv/go.mod | |
cache-dependency-path: build/devenv/go.sum | |
- name: Download Go dependencies | |
run: | | |
go mod download | |
- name: Build Docker Images | |
run: just build-docker-dev-ci | |
env: | |
DOCKER_BUILDKIT: 1 | |
- name: Test Services | |
working-directory: build/devenv/tests/services | |
run: | | |
go test -v -run TestService |