Skip to content

Commit ef1825b

Browse files
authored
[SDK-4443] Use GitHub Actions for CI (#668)
1 parent 618c996 commit ef1825b

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: auth0/java-jwt/build-and-test
2+
3+
on:
4+
pull_request:
5+
merge_group:
6+
push:
7+
branches: ["master", "main", "v1"]
8+
9+
jobs:
10+
gradle:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: actions/setup-java@v3
15+
with:
16+
distribution: temurin
17+
java-version: 11
18+
- uses: gradle/gradle-build-action@a4cf152f482c7ca97ef56ead29bf08bcd953284c
19+
with:
20+
arguments: assemble apiDiff check jacocoTestReport --continue --console=plain
21+
- uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d
22+
with:
23+
flags: unittests
24+
- uses: actions/upload-artifact@v3
25+
with:
26+
name: Reports
27+
path: lib/build/reports

.github/workflows/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
8+
- package-ecosystem: "gradle"
9+
directory: "lib"
10+
schedule:
11+
interval: "daily"
12+
ignore:
13+
- dependency-name: "*"
14+
update-types: ["version-update:semver-major"]

0 commit comments

Comments
 (0)