Skip to content

all: bump jwt dependency to v4 due to the incompatiblity of v3 (#14) #11

all: bump jwt dependency to v4 due to the incompatiblity of v3 (#14)

all: bump jwt dependency to v4 due to the incompatiblity of v3 (#14) #11

Workflow file for this run

name: build
on:
push:
branches:
- main
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: checkout source code
uses: actions/checkout@master
- name: setup go environment
uses: actions/setup-go@v1
with:
go-version: '1.15.4'
- name: run tests
run: make test
- name: upload coverage report
uses: actions/upload-artifact@master
with:
name: chartmuseum-auth-coverage-report-${{ github.sha }}
path: coverage.html
if: always()