2024-10-26 15:57:27 +02:00
|
|
|
# SPDX-FileCopyrightText: 2024 The go-mail Authors
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2024-10-26 15:33:05 +02:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref_name }}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
codecov:
|
|
|
|
name: Test with Codecov coverage (${{ matrix.os }} / ${{ matrix.go }})
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
concurrency:
|
2024-10-26 15:52:27 +02:00
|
|
|
group: ci-codecov-${{ matrix.os }}-${{ matrix.go }}
|
2024-10-26 15:33:05 +02:00
|
|
|
cancel-in-progress: true
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest]
|
|
|
|
go: ['1.23']
|
|
|
|
env:
|
|
|
|
PERFORM_ONLINE_TEST: ${{ vars.PERFORM_ONLINE_TEST }}
|
2024-10-28 16:32:24 +01:00
|
|
|
PERFORM_UNIX_OPEN_WRITE_TESTS: ${{ vars.PERFORM_UNIX_OPEN_WRITE_TESTS }}
|
|
|
|
PERFORM_SENDMAIL_TESTS: ${{ vars.PERFORM_SENDMAIL_TESTS }}
|
2024-10-26 15:33:05 +02:00
|
|
|
TEST_HOST: ${{ secrets.TEST_HOST }}
|
|
|
|
TEST_USER: ${{ secrets.TEST_USER }}
|
|
|
|
TEST_PASS: ${{ secrets.TEST_PASS }}
|
|
|
|
steps:
|
|
|
|
- name: Harden Runner
|
|
|
|
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
|
|
|
|
with:
|
|
|
|
egress-policy: audit
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # master
|
|
|
|
- name: Setup go
|
|
|
|
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go }}
|
|
|
|
check-latest: true
|
|
|
|
- name: Install sendmail
|
|
|
|
run: |
|
2024-11-01 16:36:06 +01:00
|
|
|
sudo apt-get -y update && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install nullmailer && which sendmail
|
2024-10-26 15:33:05 +02:00
|
|
|
- name: Run go test
|
2024-10-26 16:25:42 +02:00
|
|
|
if: success()
|
2024-10-26 15:33:05 +02:00
|
|
|
run: |
|
|
|
|
go test -race -shuffle=on --coverprofile=coverage.coverprofile --covermode=atomic ./...
|
|
|
|
- name: Upload coverage to Codecov
|
|
|
|
if: success()
|
|
|
|
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
|
|
|
|
lint:
|
|
|
|
name: golangci-lint (${{ matrix.go }})
|
2024-10-26 15:48:10 +02:00
|
|
|
runs-on: ubuntu-latest
|
2024-10-26 15:33:05 +02:00
|
|
|
concurrency:
|
2024-10-26 15:52:27 +02:00
|
|
|
group: ci-lint-${{ matrix.go }}
|
2024-10-26 15:33:05 +02:00
|
|
|
cancel-in-progress: true
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
go: ['1.23']
|
|
|
|
steps:
|
|
|
|
- name: Harden Runner
|
|
|
|
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
|
|
|
|
with:
|
|
|
|
egress-policy: audit
|
|
|
|
- name: Setup go
|
|
|
|
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go }}
|
|
|
|
check-latest: true
|
2024-10-26 15:50:14 +02:00
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # master
|
2024-10-26 15:33:05 +02:00
|
|
|
- name: golangci-lint
|
|
|
|
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6.1.1
|
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
dependency-review:
|
|
|
|
name: Dependency review
|
2024-10-26 15:47:04 +02:00
|
|
|
runs-on: ubuntu-latest
|
2024-10-26 15:33:05 +02:00
|
|
|
concurrency:
|
|
|
|
group: ci-dependency-review
|
|
|
|
cancel-in-progress: true
|
|
|
|
steps:
|
|
|
|
- name: Harden Runner
|
|
|
|
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
|
|
|
|
with:
|
|
|
|
egress-policy: audit
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # master
|
|
|
|
- name: 'Dependency Review'
|
2024-10-29 14:16:58 +01:00
|
|
|
uses: actions/dependency-review-action@4081bf99e2866ebe428fc0477b69eb4fcda7220a # v4.4.0
|
2024-10-28 22:59:16 +01:00
|
|
|
with:
|
|
|
|
base-ref: ${{ github.event.pull_request.base.sha || 'main' }}
|
|
|
|
head-ref: ${{ github.event.pull_request.head.sha || github.ref }}
|
2024-10-26 15:33:05 +02:00
|
|
|
govulncheck:
|
|
|
|
name: Go vulnerabilities check
|
2024-10-26 15:48:10 +02:00
|
|
|
runs-on: ubuntu-latest
|
2024-10-26 15:33:05 +02:00
|
|
|
concurrency:
|
|
|
|
group: ci-govulncheck
|
|
|
|
cancel-in-progress: true
|
|
|
|
steps:
|
|
|
|
- name: Harden Runner
|
|
|
|
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
|
|
|
|
with:
|
|
|
|
egress-policy: audit
|
|
|
|
- name: Run govulncheck
|
|
|
|
uses: golang/govulncheck-action@b625fbe08f3bccbe446d94fbf87fcc875a4f50ee # v1.0.4
|
|
|
|
test:
|
|
|
|
name: Test (${{ matrix.os }} / ${{ matrix.go }})
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
concurrency:
|
2024-10-26 15:52:27 +02:00
|
|
|
group: ci-test-${{ matrix.os }}-${{ matrix.go }}
|
2024-10-26 15:33:05 +02:00
|
|
|
cancel-in-progress: true
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
2024-10-26 17:11:21 +02:00
|
|
|
go: ['1.19', '1.20', '1.21', '1.22', '1.23']
|
2024-10-26 15:33:05 +02:00
|
|
|
steps:
|
|
|
|
- name: Harden Runner
|
|
|
|
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
|
|
|
|
with:
|
|
|
|
egress-policy: audit
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # master
|
|
|
|
- name: Setup go
|
|
|
|
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go }}
|
|
|
|
- name: Run go test
|
|
|
|
run: |
|
|
|
|
go test -race -shuffle=on ./...
|
2024-10-27 17:49:04 +01:00
|
|
|
test-fbsd:
|
|
|
|
name: Test on FreeBSD ${{ matrix.osver }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
concurrency:
|
|
|
|
group: ci-test-freebsd-${{ matrix.osver }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-10-27 20:59:24 +01:00
|
|
|
osver: ['14.1', '14.0', 13.4']
|
2024-10-27 17:49:04 +01:00
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # master
|
|
|
|
- name: Run go test on FreeBSD
|
|
|
|
uses: vmactions/freebsd-vm@v1
|
|
|
|
with:
|
|
|
|
usesh: true
|
2024-10-27 18:22:22 +01:00
|
|
|
copyback: false
|
2024-10-27 17:49:04 +01:00
|
|
|
prepare: |
|
|
|
|
pkg install -y go
|
|
|
|
run: |
|
2024-10-27 18:22:22 +01:00
|
|
|
cd $GITHUB_WORKSPACE;
|
2024-10-27 17:49:04 +01:00
|
|
|
go test -race -shuffle=on ./...
|
2024-10-26 15:33:05 +02:00
|
|
|
reuse:
|
|
|
|
name: REUSE Compliance Check
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
concurrency:
|
|
|
|
group: ci-reuse
|
|
|
|
cancel-in-progress: true
|
|
|
|
steps:
|
|
|
|
- name: Harden Runner
|
|
|
|
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
|
|
|
|
with:
|
|
|
|
egress-policy: audit
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # master
|
|
|
|
- name: REUSE Compliance Check
|
|
|
|
uses: fsfe/reuse-action@3ae3c6bdf1257ab19397fab11fd3312144692083 # v4.0.0
|
|
|
|
sonarqube:
|
|
|
|
name: Test with SonarQube review (${{ matrix.os }} / ${{ matrix.go }})
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
concurrency:
|
2024-10-26 15:52:27 +02:00
|
|
|
group: ci-codecov-${{ matrix.go }}
|
2024-10-26 15:33:05 +02:00
|
|
|
cancel-in-progress: true
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest]
|
|
|
|
go: ['1.23']
|
|
|
|
env:
|
|
|
|
PERFORM_ONLINE_TEST: ${{ vars.PERFORM_ONLINE_TEST }}
|
|
|
|
TEST_HOST: ${{ secrets.TEST_HOST }}
|
|
|
|
TEST_USER: ${{ secrets.TEST_USER }}
|
|
|
|
TEST_PASS: ${{ secrets.TEST_PASS }}
|
|
|
|
steps:
|
|
|
|
- name: Harden Runner
|
|
|
|
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
|
|
|
|
with:
|
|
|
|
egress-policy: audit
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # master
|
|
|
|
- name: Setup go
|
|
|
|
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go }}
|
|
|
|
check-latest: true
|
|
|
|
- name: Run go test
|
|
|
|
run: |
|
|
|
|
go test -shuffle=on -race --coverprofile=./cov.out ./...
|
|
|
|
- name: SonarQube scan
|
|
|
|
uses: sonarsource/sonarqube-scan-action@884b79409bbd464b2a59edc326a4b77dc56b2195 # master
|
|
|
|
if: success()
|
|
|
|
env:
|
|
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
|
|
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
|
|
|
|
- name: SonarQube quality gate
|
2024-10-29 14:17:03 +01:00
|
|
|
uses: sonarsource/sonarqube-quality-gate-action@8406f4f1edaffef38e9fb9c53eb292fc1d7684fa # master
|
2024-10-26 15:33:05 +02:00
|
|
|
timeout-minutes: 5
|
|
|
|
env:
|
|
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
|
|
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
|