Update openapi.yaml
to openai/openai-openapi
commit 33d5c27 (latest as of Jun 9th)
#136
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | |
with: | |
tools-deps: '1.11.1.1208' | |
- name: Test | |
run: clojure -T:build test | |
env: | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} |