Skip to content

build(deps): bump github.com/joho/godotenv from 1.4.0 to 1.5.1 #1195

build(deps): bump github.com/joho/godotenv from 1.4.0 to 1.5.1

build(deps): bump github.com/joho/godotenv from 1.4.0 to 1.5.1 #1195

Workflow file for this run

name: Test
on: push
jobs:
test:
strategy:
matrix:
go-version: [1.22.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: go test -shuffle=on -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Vet
run: go vet ./...
- name: Codecov
run: bash <(curl -s https://codecov.io/bash)