mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-12 17:02:55 +01:00
Merge remote-tracking branch 'origin/main' into 42-testcoverage
This commit is contained in:
commit
a4d927b518
1 changed files with 6 additions and 1 deletions
7
.github/workflows/codecov.yml
vendored
7
.github/workflows/codecov.yml
vendored
|
@ -37,7 +37,12 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@master
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Install sendmail
|
||||||
|
if: matrix.go == 1.19 && matrix.os == 'ubuntu-latest'
|
||||||
|
run: |
|
||||||
|
sudo apt-get -y install sendmail; which sendmail
|
||||||
|
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: |
|
run: |
|
||||||
go test -v -race --coverprofile=coverage.coverprofile --covermode=atomic ./...
|
go test -v -race --coverprofile=coverage.coverprofile --covermode=atomic ./...
|
||||||
|
|
Loading…
Reference in a new issue