Skip to content

Bump github.com/jhillyerd/enmime from 1.0.0 to 1.0.1 #29

Bump github.com/jhillyerd/enmime from 1.0.0 to 1.0.1

Bump github.com/jhillyerd/enmime from 1.0.0 to 1.0.1 #29

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Build
run: go build -v -tags lambda.norpc ./...
- name: Test
run: go test -tags lambda.norpc -covermode="count" -coverprofile="/tmp/coverage.out"
- name: Coverage Report
run: go tool cover -func="/tmp/coverage.out"