Skip to content

fix(deps): update module github.com/go-jose/go-jose/v4 to v4.0.4 (#15) #61

fix(deps): update module github.com/go-jose/go-jose/v4 to v4.0.4 (#15)

fix(deps): update module github.com/go-jose/go-jose/v4 to v4.0.4 (#15) #61

Workflow file for this run

---
name: Lint and test
# Run for all pushes to main and pull requests
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
lint-and-test:
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run go tests and generate coverage report
run: make test
# - name: Upload coverage report
# uses: codecov/codecov-action@v4
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# file: ./coverage.out
# flags: unittests
# name: codecov-umbrella