Skip to content

Commit 7452bfd

Browse files
committed
WIP
1 parent b9f35ad commit 7452bfd

File tree

3 files changed

+36
-143
lines changed

3 files changed

+36
-143
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Build and test
2+
on: [push]
3+
4+
jobs:
5+
build-and-check:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- uses: actions/setup-java@v4
10+
with:
11+
java-version: '17'
12+
distribution: 'temurin'
13+
14+
- name: Setup Gradle
15+
uses: gradle/actions/setup-gradle@v4
16+
with:
17+
cache-read-only: false
18+
19+
- name: Generate and submit dependency graph
20+
uses: gradle/actions/dependency-submission@v4
21+
if: ${{ github.ref == 'refs/heads/master' }}
22+
23+
- name: Build
24+
run: ./gradlew shadowJar
25+
26+
- name: Run checks
27+
run: ./gradlew check
28+
29+
- name: Run integration tests
30+
run: ./gradlew integrationTest
31+
32+
- name: Upload artifact
33+
uses: actions/upload-artifact@v4
34+
with:
35+
name: Agent package
36+
path: agent/build/libs

.github/workflows/build.yml

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

.travis.yml

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

0 commit comments

Comments
 (0)