Bump github.com/aws/aws-sdk-go-v2/service/sqs from 1.34.1 to 1.34.3 #175
Workflow file for this run
This file contains 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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
lint: | |
name: Lint and fmt check | |
runs-on: self-hosted | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: "go.mod" | |
- name: Linting and fmt check | |
run: make lint | |
build: | |
name: CI on Go | |
runs-on: self-hosted | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: "go.mod" | |
- name: Cache Docker layers | |
uses: actions/cache@v4 | |
with: | |
path: /tmp/.docker | |
key: ${{ runner.os }}-docker-${{ hashFiles('**/Dockerfile') }} | |
restore-keys: | | |
${{ runner.os }}-docker- | |
- name: Start dependencies | |
run: make deps-start | |
- name: Running CI | |
run: | | |
sleep 30 | |
make ci | |
docker ps | |
- name: Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: true # optional (default = false) | |
files: ./coverage.txt | |
name: codecov-umbrella # optional | |
token: ${{ secrets.CODECOV_TOKEN }} # required | |
- name: e2e | |
run: | | |
go build -o service ./service/ | |
nohup ./service/service & | |
go run client/main.go | |
working-directory: ./examples | |
env: | |
OTEL_EXPORTER_OTLP_INSECURE : true | |
- name: Stop dependencies | |
run: make deps-stop |