Skip to content

VAULT 11 - Proxy Ollama Requests For Authentication #3

VAULT 11 - Proxy Ollama Requests For Authentication

VAULT 11 - Proxy Ollama Requests For Authentication #3

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- main
paths:
- ".github/workflows/cd.yaml"
- "proxy/**"
push:
branches:
- main
paths:
- ".github/workflows/cd.yaml"
- "proxy/**"
workflow_dispatch:
jobs:
lint-and-build: # Linting and building are combined to save time for setting up Go
name: Lint and Build
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./proxy
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23.x
cache-dependency-path: "go.sum"
- name: Build proxy
run: |
make all