Skip to content

build(deps): bump gopkg.in/go-jose/go-jose.v2 from 2.6.1 to 2.6.3 #52

build(deps): bump gopkg.in/go-jose/go-jose.v2 from 2.6.1 to 2.6.3

build(deps): bump gopkg.in/go-jose/go-jose.v2 from 2.6.1 to 2.6.3 #52

Workflow file for this run

name: Run unit tests
on:
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
unit-tests:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.21' # Use the version of Go you need for your project
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Test
run: make test
- name: Upload test coverage
uses: actions/upload-artifact@v3
if: always()
with:
name: test-coverage
path: coverage.html
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.out
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true