Skip to content

Commit 9d6688b

Browse files
authored
chore: update to go1.23 and dust up the code (#118)
1 parent 7b4880b commit 9d6688b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+680
-1360
lines changed

.envrc.localstack

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
LOCALSTACK_ENDPOINT: http://localhost:4566
2+
AWS_DEFAULT_REGION: eu-west-1
3+
AWS_ACCESS_KEY_ID: test
4+
AWS_SECRET_ACCESS_KEY: test

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@v4
1717

1818
- name: Lint and Vet
19-
uses: golangci/golangci-lint-action@v4
19+
uses: golangci/golangci-lint-action@v7
2020
with:
2121
version: latest
2222
args: --timeout=3m
@@ -32,11 +32,11 @@ jobs:
3232
pip install localstack awscli-local[ver1] # install LocalStack cli and awslocal
3333
docker pull localstack/localstack # Make sure to pull the latest version of the image
3434
localstack start -d # Start LocalStack in the background
35-
35+
3636
echo "Waiting for LocalStack startup..." # Wait 30 seconds for the LocalStack container
37-
localstack wait -t 30 # to become ready before timing out
38-
echo "Startup complete"
39-
37+
localstack wait -t 30 # to become ready before timing out
38+
echo "Startup complete"
39+
4040
- name: Set up Go
4141
uses: actions/setup-go@v5
4242
with:

0 commit comments

Comments
 (0)