Skip to content

Update openapi.yaml to openai/openai-openapi commit 33d5c27 (latest as of Jun 9th) #136

Update openapi.yaml to openai/openai-openapi commit 33d5c27 (latest as of Jun 9th)

Update openapi.yaml to openai/openai-openapi commit 33d5c27 (latest as of Jun 9th) #136

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache
uses: actions/cache@v2
with:
path: |
.cpcache
~/.m2/repository
key: ${{ runner.os }}-deps-${{ hashFiles('**/deps.edn') }}
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@3.0
with:
tools-deps: '1.11.1.1208'
- name: Test
run: clojure -T:build test
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}