2024-09-01 16:01:58 +02:00
|
|
|
# SPDX-FileCopyrightText: 2024 Winni Neessen <wn@neessen.dev>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
name: Codecov workflow
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths:
|
|
|
|
- '**.go'
|
|
|
|
- 'go.*'
|
|
|
|
- '.forgejo/**'
|
|
|
|
- 'codecov.yml'
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths:
|
|
|
|
- '**.go'
|
|
|
|
- 'go.*'
|
|
|
|
- '.forgejo/**'
|
|
|
|
- 'codecov.yml'
|
2024-09-13 20:26:26 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2024-09-01 16:01:58 +02:00
|
|
|
jobs:
|
|
|
|
run:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-09-13 20:26:26 +02:00
|
|
|
- name: Harden Runner
|
2024-11-19 02:10:13 +01:00
|
|
|
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
|
2024-09-13 20:26:26 +02:00
|
|
|
with:
|
|
|
|
egress-policy: audit
|
|
|
|
|
2024-09-01 16:01:58 +02:00
|
|
|
- name: Checkout Code
|
2024-09-13 20:26:26 +02:00
|
|
|
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # master
|
2024-09-01 16:01:58 +02:00
|
|
|
- name: Setup go
|
2024-12-13 02:02:06 +01:00
|
|
|
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
|
2024-09-01 16:01:58 +02:00
|
|
|
with:
|
|
|
|
go-version: '1.23'
|
|
|
|
- name: Run Tests
|
|
|
|
run: |
|
|
|
|
go test -v -shuffle=on -race --coverprofile=coverage.coverprofile --covermode=atomic ./...
|
|
|
|
- name: Upload coverage to Codecov
|
2024-12-06 01:37:52 +01:00
|
|
|
uses: codecov/codecov-action@7f8b4b4bde536c465e797be725718b88c5d95e0e # v5.1.1
|
2024-09-01 16:01:58 +02:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
|