Skip to content

Commit 9ffc72f

Browse files
committed
Added TestLens GH Actions workflow
1 parent cb9312c commit 9ffc72f

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/testLens.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# This workflow will run TestLens on main and PRs
2+
3+
name: TestLens
4+
5+
on:
6+
push:
7+
branches: [ main ]
8+
pull_request:
9+
branches:
10+
- '*'
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v6
17+
- uses: actions/setup-java@v5
18+
with:
19+
distribution: temurin
20+
java-version: 21 # or later
21+
- uses: gradle/actions/setup-gradle@v5
22+
- uses: testlens-app/setup-testlens@v1
23+
- run: ./gradlew build

0 commit comments

Comments
 (0)