Skip to content

parse .env with godotenv in export so values match runtime environment #98

parse .env with godotenv in export so values match runtime environment

parse .env with godotenv in export so values match runtime environment #98

Workflow file for this run

name: Go
on: [push]
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.22.x', '1.23.x' ]
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Test
run: go test -v -race ./...