Add changing visibility timeout for each call (#242) #350
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] | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
AWS_ENDPOINT: http://localstack:4566 | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: golang:1.21.6-alpine3.19 | |
services: | |
localstack: | |
image: localstack/localstack:latest | |
env: | |
SERVICES: sqs | |
DEFAULT_REGION: us-east-1 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: apk add git gcc musl-dev | |
- run: go test ./... | |
snyk-scan: | |
runs-on: ubuntu-latest | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- uses: snyk/actions/setup@master | |
- run: snyk test |