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-10-25 02:59:30 +02:00
|
|
|
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.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-11-20 02:09:55 +01:00
|
|
|
uses: codecov/codecov-action@05f5a9cfad807516dbbef9929c4a42df3eb78766 # v5.0.3
|
2024-09-01 16:01:58 +02:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
|