-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🌿 Fern Regeneration -- February 7, 2024 (#64)
* 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
1 parent
b9a1937
commit c677e30
Showing
25 changed files
with
2,354 additions
and
729 deletions.
There are no files selected for viewing
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
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/** |
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
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 }} | ||
|
Oops, something went wrong.