all: bump jwt dependency to v4 due to the incompatiblity of v3 (#14) #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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() |