Skip to content

Upgrade golang-jwt to fix security issue (#235) #399

Upgrade golang-jwt to fix security issue (#235)

Upgrade golang-jwt to fix security issue (#235) #399

Workflow file for this run

name: Unit Test
on:
pull_request:
branches:
- main
push:
tags:
- v*
branches:
- main
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
pull-requests: read
jobs:
unit-test:
name: Unit Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache Go dependencies
uses: actions/setup-go@v5
with:
go-version-file: "go.mod" # This uses the Go version defined in the mod file, in contrast to setting a defined version.
- name: Execute unit test
run: make test-ci