Skip to content

feat: dereference pointers of context when necessary, to make logs mo… #73

feat: dereference pointers of context when necessary, to make logs mo…

feat: dereference pointers of context when necessary, to make logs mo… #73

Workflow file for this run

name: Tests
on:
push:
tags:
branches:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
# we need control over the path, since stacktrace tests rely on it
path: github.com/samber/oops
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
stable: false
- name: Build
working-directory: ./github.com/samber/oops
run: make build
- name: Test
working-directory: ./github.com/samber/oops
run: make test
- name: Test
working-directory: ./github.com/samber/oops
run: make coverage
- name: Codecov
uses: codecov/codecov-action@v2
with:
working-directory: ./github.com/samber/oops
token: ${{ secrets.CODECOV_TOKEN }}
file: ./cover.out
flags: unittests
verbose: true