Skip to content

chore(deps): update module github.com/dexidp/dex/api/v2 to v2.2.0 #676

chore(deps): update module github.com/dexidp/dex/api/v2 to v2.2.0

chore(deps): update module github.com/dexidp/dex/api/v2 to v2.2.0 #676

Workflow file for this run

name: "Unit tests"
on:
pull_request:
paths:
- 'pkg/**'
- 'cmd/**'
- 'Dockerfile*'
- 'go.mod'
- 'go.sum'
- '.golangci.yaml'
jobs:
build:
runs-on: [ default ]
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
token: ${{ secrets.GITHUB_TOKEN }}
- name: golangci-lint
run: make lint
- name: test
run: make test
- name: build
run: make build