-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🌿 Fern Regeneration -- September 6, 2024 (#35)
* SDK regeneration * refactor custom code to get around import cycles * testing * add readme again * update readme for new api changes * fix typos in the readme * i don't know * convert SchematicClient to struct --------- Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com> Co-authored-by: Christopher Brady <[email protected]>
- Loading branch information
1 parent
fb206b4
commit fe4a482
Showing
819 changed files
with
32,503 additions
and
313,600 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Specify files that shouldn't be modified by Fern | ||
|
||
|
||
buffer/* | ||
cache/* | ||
client/opts.go | ||
client/schematic_client.go | ||
client/* | ||
client/schematic.go | ||
flags/* | ||
http/* | ||
logger/* | ||
|
||
|
||
generate.go | ||
generate.sh | ||
README.md | ||
|
||
|
||
mocks/* |
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,27 @@ | ||
name: ci | ||
|
||
on: [push] | ||
|
||
jobs: | ||
compile: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up go | ||
uses: actions/setup-go@v4 | ||
|
||
- name: Compile | ||
run: go build ./... | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up go | ||
uses: actions/setup-go@v4 | ||
|
||
- name: Test | ||
run: go test ./... |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.