Skip to content

fix(deps): update module github.com/aws/aws-lambda-go to v1.42.0 (#48) #58

fix(deps): update module github.com/aws/aws-lambda-go to v1.42.0 (#48)

fix(deps): update module github.com/aws/aws-lambda-go to v1.42.0 (#48) #58

Workflow file for this run

name: continuous-integration
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
env:
GOLANGCI_LINT_VERSION: v1.51.2
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Lint code
uses: golangci/golangci-lint-action@v3
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
skip-pkg-cache: true
skip-build-cache: true
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Unit tests
run: |
go test -v -race -gcflags=-l ./...
go test -gcflags=-l -covermode=count -coverprofile=profile.cov ./...
- name: Goveralls
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov