Skip to content

use the same dotenv parser as docker #96

use the same dotenv parser as docker

use the same dotenv parser as docker #96

Workflow file for this run

name: Go
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- uses: actions/setup-go@v4
with:
go-version: 1.21
- uses: actions/checkout@v3
- name: lint
run: go run github.com/ysmood/golangci-lint@v0.13.0
if: matrix.os == 'ubuntu-latest'
- name: test
run: go test ./...