Skip to content

chore(deps): bump github.com/aws/aws-sdk-go-v2/service/lambda from 1.37.1 to 1.38.0 #203

chore(deps): bump github.com/aws/aws-sdk-go-v2/service/lambda from 1.37.1 to 1.38.0

chore(deps): bump github.com/aws/aws-sdk-go-v2/service/lambda from 1.37.1 to 1.38.0 #203

Workflow file for this run

name: ci
on:
push:
paths-ignore:
- 'README.md'
tags-ignore:
- "v[0-9]+.[0-9]+.[0-9]+"
branches:
- "*"
pull_request:
types:
- opened
- synchronize
- reopened
paths-ignore:
- 'README.md'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.18
id: go
- name: Cache
uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Unshallow
run: git fetch --prune --unshallow --tags
- name: build
run: make build
- name: test
run: make test_view
- name: Archive code coverage results
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: cover_file.html