mirror of
https://github.com/wneessen/apg-go.git
synced 2024-11-10 08:12:53 +01:00
44 lines
1 KiB
YAML
44 lines
1 KiB
YAML
|
# SPDX-FileCopyrightText: 2022 Winni Neessen <winni@neessen.dev>
|
||
|
#
|
||
|
# SPDX-License-Identifier: CC0-1.0
|
||
|
|
||
|
name: Codecov workflow
|
||
|
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
|
||
|
uses: actions/checkout@master
|
||
|
- name: Setup go
|
||
|
uses: actions/setup-go@v3
|
||
|
with:
|
||
|
go-version: ${{ matrix.go }}
|
||
|
- name: Run Tests
|
||
|
run: |
|
||
|
go test -v -race --coverprofile=coverage.coverprofile --covermode=atomic ./...
|
||
|
- name: Upload coverage to Codecov
|
||
|
if: success() && matrix.go == '1.22' && matrix.os == 'ubuntu-latest'
|
||
|
uses: codecov/codecov-action@v3
|
||
|
with:
|
||
|
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
|