Skip to content

build(deps): bump cryptography from 49.0.0 to 50.0.1 in /03-oauth-mcp/client-credentials/client-python #136

build(deps): bump cryptography from 49.0.0 to 50.0.1 in /03-oauth-mcp/client-credentials/client-python

build(deps): bump cryptography from 49.0.0 to 50.0.1 in /03-oauth-mcp/client-credentials/client-python #136

Workflow file for this run

name: build-and-test
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v7
with:
go-version-file: "go.mod"
check-latest: true
- name: Install golangci-lint
uses: golangci/golangci-lint-action@v9
with:
install-only: true
version: latest
- name: Run make lint
run: make lint
make-all:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v7
with:
go-version-file: "go.mod"
check-latest: true
- name: Run make all
run: make all
- name: Run make test
run: make test-verbose