Skip to content

Commit b26b447

Browse files
chore: sync repo
1 parent 8e31b6a commit b26b447

File tree

188 files changed

+14407
-16168
lines changed

Some content is hidden

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

188 files changed

+14407
-16168
lines changed

.DS_Store

-6 KB
Binary file not shown.

.devcontainer/devcontainer.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
3+
{
4+
"name": "Development",
5+
"image": "mcr.microsoft.com/devcontainers/go:1.23-bookworm",
6+
"postCreateCommand": "go mod tidy"
7+
}

.github/update-requirements.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: CI
2+
on:
3+
push:
4+
branches-ignore:
5+
- 'generated'
6+
- 'codegen/**'
7+
- 'integrated/**'
8+
- 'stl-preview-head/**'
9+
- 'stl-preview-base/**'
10+
pull_request:
11+
branches-ignore:
12+
- 'stl-preview-head/**'
13+
- 'stl-preview-base/**'
14+
15+
jobs:
16+
lint:
17+
timeout-minutes: 10
18+
name: lint
19+
runs-on: ${{ github.repository == 'stainless-sdks/scrapegraphai-sdk-go' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
20+
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
21+
22+
steps:
23+
- uses: actions/checkout@v4
24+
25+
- name: Setup go
26+
uses: actions/setup-go@v5
27+
with:
28+
go-version-file: ./go.mod
29+
30+
- name: Run lints
31+
run: ./scripts/lint
32+
test:
33+
timeout-minutes: 10
34+
name: test
35+
runs-on: ${{ github.repository == 'stainless-sdks/scrapegraphai-sdk-go' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
36+
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
37+
steps:
38+
- uses: actions/checkout@v4
39+
40+
- name: Setup go
41+
uses: actions/setup-go@v5
42+
with:
43+
go-version-file: ./go.mod
44+
45+
- name: Bootstrap
46+
run: ./scripts/bootstrap
47+
48+
- name: Run tests
49+
run: ./scripts/test

.github/workflows/codeql.yml

Lines changed: 0 additions & 63 deletions
This file was deleted.

.github/workflows/dependency-review.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/workflows/pylint.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/python-publish.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 0 additions & 89 deletions
This file was deleted.

.gitignore

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
.env
2-
# Ignore .DS_Store files anywhere in the repository
3-
.DS_Store
4-
**/.DS_Store
5-
*.csv
1+
.prism.log
2+
codegen.log
3+
Brewfile.lock.json
4+
.idea/

0 commit comments

Comments
 (0)