mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-14 09:52:54 +01:00
Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
8f2959b465
1 changed files with 5 additions and 1 deletions
6
.github/workflows/codecov.yml
vendored
6
.github/workflows/codecov.yml
vendored
|
@ -16,6 +16,10 @@ on:
|
||||||
- 'go.*'
|
- 'go.*'
|
||||||
- '.github/**'
|
- '.github/**'
|
||||||
- 'codecov.yml'
|
- 'codecov.yml'
|
||||||
|
env:
|
||||||
|
TEST_HOST: ${{ secrets.TEST_HOST }}
|
||||||
|
TEST_SMTPAUTH_USER: ${{ secrets.TEST_USER }}
|
||||||
|
TEST_SMTPAUTH_PASS: ${{ secrets.TEST_PASS }}
|
||||||
jobs:
|
jobs:
|
||||||
run:
|
run:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
@ -29,7 +33,7 @@ jobs:
|
||||||
|
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: |
|
run: |
|
||||||
go test -race --coverprofile=coverage.coverprofile --covermode=atomic ./...
|
go test -v -race --coverprofile=coverage.coverprofile --covermode=atomic ./...
|
||||||
|
|
||||||
- name: Upload coverage to Codecov
|
- name: Upload coverage to Codecov
|
||||||
if: success() && matrix.go == 1.18 && matrix.os == 'ubuntu-latest'
|
if: success() && matrix.go == 1.18 && matrix.os == 'ubuntu-latest'
|
||||||
|
|
Loading…
Reference in a new issue