We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 962b633 commit b160680Copy full SHA for b160680
.github/workflows/ci.yml
@@ -36,6 +36,31 @@ jobs:
36
37
- name: Run lints
38
run: ./scripts/lint
39
+
40
+ build:
41
+ timeout-minutes: 15
42
+ name: build
43
+ runs-on: ${{ github.repository == 'stainless-sdks/scrapegraphai-java' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
44
+ if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
45
46
+ steps:
47
+ - uses: actions/checkout@v4
48
49
+ - name: Set up Java
50
+ uses: actions/setup-java@v4
51
+ with:
52
+ distribution: temurin
53
+ java-version: |
54
+ 8
55
+ 21
56
+ cache: gradle
57
58
+ - name: Set up Gradle
59
+ uses: gradle/actions/setup-gradle@v4
60
61
+ - name: Build SDK
62
+ run: ./scripts/build
63
64
test:
65
timeout-minutes: 15
66
name: test
0 commit comments