Skip to content

Bump github.com/nats-io/jwt from 1.2.2 to 2.4.0+incompatible in /examples #98

Bump github.com/nats-io/jwt from 1.2.2 to 2.4.0+incompatible in /examples

Bump github.com/nats-io/jwt from 1.2.2 to 2.4.0+incompatible in /examples #98

Workflow file for this run

name: Build
on:
push:
branches:
- '**'
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.18.x, 1.20.x]
steps:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Run coverage
run: go test ./... -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage to Codecov
if: ${{ matrix.go-version == '1.18.x' }}
run: bash <(curl -s https://codecov.io/bash)