Fix typo / inconsistency in Msg method #461
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2022 Winni Neessen <[email protected]> | |
# | |
# SPDX-License-Identifier: CC0-1.0 | |
name: Codecov workflow | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**.go' | |
- 'go.*' | |
- '.github/**' | |
- 'codecov.yml' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '**.go' | |
- 'go.*' | |
- '.github/**' | |
- 'codecov.yml' | |
env: | |
TEST_HOST: ${{ secrets.TEST_HOST }} | |
TEST_FROM: ${{ secrets.TEST_USER }} | |
TEST_ALLOW_SEND: "1" | |
TEST_SMTPAUTH_USER: ${{ secrets.TEST_USER }} | |
TEST_SMTPAUTH_PASS: ${{ secrets.TEST_PASS }} | |
TEST_SMTPAUTH_TYPE: "LOGIN" | |
permissions: | |
contents: read | |
jobs: | |
run: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
go: [1.18, 1.19, '1.20', '1.21', '1.22'] | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1 | |
with: | |
egress-policy: audit | |
- name: Checkout Code | |
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # master | |
- name: Setup go | |
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Install sendmail | |
if: matrix.go == '1.22' && matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get -y install sendmail; which sendmail | |
- name: Run Tests | |
run: | | |
go test -v -race --coverprofile=coverage.coverprofile --covermode=atomic ./... | |
- name: Upload coverage to Codecov | |
if: success() && matrix.go == '1.22' && matrix.os == 'ubuntu-latest' | |
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos |