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
|
|
|
|
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
|
|
|
|
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-10-02 02:46:25 +02:00
|
|
|
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0
|
2024-09-01 16:01:58 +02:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
|