Skip to content

Bump github.com/go-jose/go-jose/v3 from 3.0.3 to 3.0.4 in /auth_serve… #240

Bump github.com/go-jose/go-jose/v3 from 3.0.3 to 3.0.4 in /auth_serve…

Bump github.com/go-jose/go-jose/v3 from 3.0.3 to 3.0.4 in /auth_serve… #240

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.23.x,1.24.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: |
cd auth_server
go test ./...
- name: Build
run: |
cd auth_server
make