Skip to content

Commit b483cdc

Browse files
committed
SDK regeneration
1 parent d294cb7 commit b483cdc

File tree

339 files changed

+47303
-8718
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

339 files changed

+47303
-8718
lines changed

.github/workflows/ci.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: ci
33
on: [push]
44
jobs:
55
compile:
6-
runs-on: ubuntu-24.04
6+
runs-on: ubuntu-20.04
77
steps:
88
- name: Checkout repo
99
uses: actions/checkout@v3
@@ -19,7 +19,7 @@ jobs:
1919
- name: Compile
2020
run: poetry run mypy .
2121
test:
22-
runs-on: ubuntu-24.04
22+
runs-on: ubuntu-20.04
2323
steps:
2424
- name: Checkout repo
2525
uses: actions/checkout@v3
@@ -33,13 +33,15 @@ jobs:
3333
- name: Install dependencies
3434
run: poetry install
3535

36+
- name: Install Fern
37+
run: npm install -g fern-api
3638
- name: Test
37-
run: poetry run pytest ./tests/custom/
39+
run: fern test --command "poetry run pytest -rP ."
3840

3941
publish:
4042
needs: [compile, test]
4143
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
42-
runs-on: ubuntu-24.04
44+
runs-on: ubuntu-20.04
4345
steps:
4446
- name: Checkout repo
4547
uses: actions/checkout@v3

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ dist/
22
.mypy_cache/
33
__pycache__/
44
poetry.toml
5+
.ruff_cache/

0 commit comments

Comments
 (0)