Skip to content

Commit bb1c517

Browse files
Create test-all.yml workflow
1 parent 75fe978 commit bb1c517

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/test-all.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Workflow name
2+
name: Build + Test all
3+
on:
4+
# When it will be triggered
5+
# And in which branch
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
15+
- name: Set Up JDK
16+
uses: actions/setup-java@v3
17+
with:
18+
distribution: 'zulu' # See 'Supported distributions' for available options
19+
java-version: '17'
20+
cache: 'gradle'
21+
22+
- name: Build project and run local and device tests
23+
run: ./test_all.sh

0 commit comments

Comments
 (0)