Skip to content

Support the author

Support the author #41

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: GoCoverage # The name of the workflow that will appear on Github
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
# - name: Build
# run: go build -v ./...
- name: Test ordinary
run: go test -coverprofile="coverage_ordinary.txt" -v ./ordinary_test.go ./ordinary.go
- name: Test curiosity
run: go test -coverprofile="coverage_curiosity.txt" -v ./curiosity_test.go ./curiosity.go
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}