-
Notifications
You must be signed in to change notification settings - Fork 2
Integrate Fern SDK Generation #25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
e3a6071
8fb83e2
2bcffcd
01010d8
edb7c4c
9185adf
d9ca12a
84d8bd2
bef677e
2dea4ac
1340835
48150a1
39bf0c3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Specify files that shouldn't be modified by Fern | ||
.gitignore | ||
.vscode/ | ||
|
||
src/browser_use/client.py | ||
src/browser_use/lib/ | ||
src/browser_use/wrapper/ | ||
examples/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,98 +1,37 @@ | ||
name: CI | ||
on: | ||
push: | ||
branches-ignore: | ||
- 'generated' | ||
- 'codegen/**' | ||
- 'integrated/**' | ||
- 'stl-preview-head/**' | ||
- 'stl-preview-base/**' | ||
pull_request: | ||
branches-ignore: | ||
- 'stl-preview-head/**' | ||
- 'stl-preview-base/**' | ||
name: ci | ||
|
||
on: [push] | ||
jobs: | ||
lint: | ||
timeout-minutes: 10 | ||
name: lint | ||
runs-on: ${{ github.repository == 'stainless-sdks/browser-use-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} | ||
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork | ||
compile: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install Rye | ||
run: | | ||
curl -sSf https://rye.astral.sh/get | bash | ||
echo "$HOME/.rye/shims" >> $GITHUB_PATH | ||
env: | ||
RYE_VERSION: '0.44.0' | ||
RYE_INSTALL_OPTION: '--yes' | ||
|
||
- name: Install dependencies | ||
run: rye sync --all-features | ||
|
||
- name: Run lints | ||
run: ./scripts/lint | ||
|
||
build: | ||
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork | ||
timeout-minutes: 10 | ||
name: build | ||
permissions: | ||
contents: read | ||
id-token: write | ||
runs-on: depot-ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install Rye | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
- name: Set up python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.8 | ||
- name: Bootstrap poetry | ||
run: | | ||
curl -sSf https://rye.astral.sh/get | bash | ||
echo "$HOME/.rye/shims" >> $GITHUB_PATH | ||
env: | ||
RYE_VERSION: '0.44.0' | ||
RYE_INSTALL_OPTION: '--yes' | ||
|
||
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1 | ||
- name: Install dependencies | ||
run: rye sync --all-features | ||
|
||
- name: Run build | ||
run: rye build | ||
|
||
- name: Get GitHub OIDC Token | ||
if: github.repository == 'stainless-sdks/browser-use-python' | ||
id: github-oidc | ||
uses: actions/github-script@v6 | ||
with: | ||
script: core.setOutput('github_token', await core.getIDToken()); | ||
|
||
- name: Upload tarball | ||
if: github.repository == 'stainless-sdks/browser-use-python' | ||
env: | ||
URL: https://pkg.stainless.com/s | ||
AUTH: ${{ steps.github-oidc.outputs.github_token }} | ||
SHA: ${{ github.sha }} | ||
run: ./scripts/utils/upload-artifact.sh | ||
|
||
run: poetry install | ||
- name: Compile | ||
run: poetry run mypy . | ||
test: | ||
Check warningCode scanning / CodeQL Workflow does not contain permissions Medium
Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {contents: read}
|
||
timeout-minutes: 10 | ||
name: test | ||
runs-on: ${{ github.repository == 'stainless-sdks/browser-use-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} | ||
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install Rye | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
- name: Set up python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.8 | ||
- name: Bootstrap poetry | ||
run: | | ||
curl -sSf https://rye.astral.sh/get | bash | ||
echo "$HOME/.rye/shims" >> $GITHUB_PATH | ||
env: | ||
RYE_VERSION: '0.44.0' | ||
RYE_INSTALL_OPTION: '--yes' | ||
|
||
- name: Bootstrap | ||
run: ./scripts/bootstrap | ||
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1 | ||
- name: Install dependencies | ||
run: poetry install | ||
|
||
- name: Run tests | ||
run: ./scripts/test | ||
- name: Test | ||
run: poetry run pytest -rP . | ||
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,8 @@ | ||
.prism.log | ||
_dev | ||
|
||
__pycache__ | ||
.mypy_cache | ||
|
||
dist | ||
|
||
.venv | ||
.idea | ||
|
||
.env | ||
.envrc | ||
codegen.log | ||
Brewfile.lock.json | ||
.mypy_cache/ | ||
.ruff_cache/ | ||
__pycache__/ | ||
dist/ | ||
poetry.toml | ||
|
||
.env* | ||
!.env.example |
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
{ | ||
"python.analysis.importFormat": "relative", | ||
"python.analysis.importFormat": "relative", | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": "always", | ||
"source.fixAll.ruff": "always" | ||
} | ||
} |
This file was deleted.
This file was deleted.
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
Copilot Autofix
AI 19 days ago
To fix the problem, explicitly specify the minimal required permissions for the workflow or for each job by adding a
permissions
block. For these jobs,contents: read
is sufficient, as none of the actions require write access to the repository or other resource types. The most concise and maintainable method is to add a top-levelpermissions
block immediately after thename
and beforeon
, which will apply the permission restriction to all jobs unless overridden.Edit
.github/workflows/ci.yml
to insert:after the
name: ci
line and beforeon: [push]
. No other code or dependencies are needed.