Skip to content

feat: add dotenv pkg #98

feat: add dotenv pkg

feat: add dotenv pkg #98

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Unit Tests
strategy:
matrix:
go-version: [1.17.x,1.18.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: webiny/[email protected]
with:
run: sh -c "find . -mindepth 1 -delete"
- name : Set up go ${{ matrix.go-version }} environment
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
id: go
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Check
run: make check
- name: Test
run: make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2