2024-03-14 09:47:13 +01:00
|
|
|
# SPDX-FileCopyrightText: 2022 Winni Neessen <winni@neessen.dev>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
name: Codecov workflow
|
2024-03-17 19:15:34 +01:00
|
|
|
permissions: read-all
|
2024-03-14 09:47:13 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths:
|
|
|
|
- '**.go'
|
|
|
|
- 'go.*'
|
|
|
|
- '.github/**'
|
|
|
|
- 'codecov.yml'
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths:
|
|
|
|
- '**.go'
|
|
|
|
- 'go.*'
|
|
|
|
- '.github/**'
|
|
|
|
- 'codecov.yml'
|
|
|
|
jobs:
|
|
|
|
run:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
go: ['1.22']
|
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
2024-03-17 23:22:53 +01:00
|
|
|
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # master
|
2024-03-14 09:47:13 +01:00
|
|
|
- name: Setup go
|
2024-03-17 23:22:53 +01:00
|
|
|
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
|
2024-03-14 09:47:13 +01:00
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go }}
|
|
|
|
- name: Run Tests
|
|
|
|
run: |
|
2024-03-14 10:35:43 +01:00
|
|
|
go test -v -race --coverprofile=coverage.coverprofile --covermode=atomic ./...
|
2024-03-14 09:47:13 +01:00
|
|
|
- name: Upload coverage to Codecov
|
|
|
|
if: success() && matrix.go == '1.22' && matrix.os == 'ubuntu-latest'
|
2024-03-17 23:26:51 +01:00
|
|
|
uses: codecov/codecov-action@54bcd8715eee62d40e33596ef5e8f0f48dbbccab # v4.1.0
|
2024-03-14 09:47:13 +01:00
|
|
|
with:
|
2024-03-14 10:35:43 +01:00
|
|
|
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
|