Skip to content

Build(deps): Bump github.com/aws/aws-sdk-go from 1.53.2 to 1.53.3 #877

Build(deps): Bump github.com/aws/aws-sdk-go from 1.53.2 to 1.53.3

Build(deps): Bump github.com/aws/aws-sdk-go from 1.53.2 to 1.53.3 #877

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
id: go
- name: Run test
run: |
set -xe
make test
make testrace
- name: Slack Notification (not success)
uses: act10ns/slack@v2
if: "! success()"
continue-on-error: true
with:
status: ${{ job.status }}
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
id: go
- name: Run lint
run: |
set -xe
go install golang.org/x/lint/golint@latest
make fmtci
make vet
make lint
- name: Slack Notification (not success)
uses: act10ns/slack@v2
if: "! success()"
continue-on-error: true
with:
status: ${{ job.status }}
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
notify:
needs:
- test
- lint
runs-on: ubuntu-latest
steps:
- name: Slack Notification (success)
uses: act10ns/slack@v2
if: always()
continue-on-error: true
with:
status: ${{ job.status }}
webhook-url: ${{ secrets.SLACK_WEBHOOK }}