Skip to content

build(deps): bump github.com/88labs/go-utils/aws from 0.107.0 to 0.108.0 in /envlookup #195

build(deps): bump github.com/88labs/go-utils/aws from 0.107.0 to 0.108.0 in /envlookup

build(deps): bump github.com/88labs/go-utils/aws from 0.107.0 to 0.108.0 in /envlookup #195

Workflow file for this run

name: Test envlookup
on:
push:
branches:
- main
paths:
- "envlookup/**"
pull_request:
types:
- opened
- synchronize
- reopened
paths:
- "envlookup/**"
env:
testdir : ./envlookup
jobs:
test:
strategy:
matrix:
go-version: [ 1.22.x ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
timeout-minutes: 5
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Go Module Download
working-directory: ${{ env.testdir }}
run: |
go install gotest.tools/gotestsum@latest
go mod download
- name: Test
working-directory: ${{ env.testdir }}
timeout-minutes: 3
run: |
# shellcheck disable=SC2046
gotestsum --junitfile unit-tests.xml -- -v ./... -race -coverprofile="coverage.txt" -covermode=atomic -coverpkg=./...
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ${{ env.testdir }}/coverage.txt