Skip to content

chore(deps): bump github.com/go-jose/go-jose/v4 from 4.1.0 to 4.1.4 i… #178

chore(deps): bump github.com/go-jose/go-jose/v4 from 4.1.0 to 4.1.4 i…

chore(deps): bump github.com/go-jose/go-jose/v4 from 4.1.0 to 4.1.4 i… #178

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pull-requests: read
jobs:
lint:
runs-on: ubuntu-latest
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
steps:
- name: checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: install go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: go.mod
- name: govulncheck
uses: golang/govulncheck-action@b625fbe08f3bccbe446d94fbf87fcc875a4f50ee # v1.0.4
- name: lint
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
with:
version: "v2.11"
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
concurrency:
group: test-${{ matrix.os }}-${{ github.ref }}
cancel-in-progress: true
runs-on: ${{ matrix.os }}
steps:
- name: checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: install go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: go.mod
- name: testcover
run: |
make testcover
- name: testrace
run: |
make testrace
if: ${{ matrix.os == 'ubuntu-latest' }}