Skip to content

Commit

Permalink
🌿 Fern Regeneration -- February 7, 2024 (#64)
Browse files Browse the repository at this point in the history
* SDK regeneration

* Add e2e tests

* Fix test

* .fernignore tests

* Revert "Fix test"

This reverts commit cd29b51.

* Patch

---------

Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
Co-authored-by: Billy Trend <[email protected]>
  • Loading branch information
fern-api[bot] and billytrend-cohere authored Feb 7, 2024
1 parent b9a1937 commit c677e30
Show file tree
Hide file tree
Showing 25 changed files with 2,354 additions and 729 deletions.
4 changes: 3 additions & 1 deletion .fernignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Specify files that shouldn't be modified by Fern
README.md
banner.png
LICENSE
LICENSE
.github/workflows/e2e.yml
tests/**
25 changes: 25 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI
on:
pull_request: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Go 1.x.x
uses: actions/setup-go@v4
with:
go-version: 1.x.x
- name: Install testing dependencies here so we dont have to edit the go.mod file
run: |
go get .
go get golang.org/x/tools/go/[email protected]
go get golang.org/x/[email protected]
go get golang.org/x/[email protected]
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test -v ./...
env:
COHERE_API_KEY: ${{ secrets.COHERE_API_KEY }}

Loading

0 comments on commit c677e30

Please sign in to comment.