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 75fe978 commit bb1c517Copy full SHA for bb1c517
.github/workflows/test-all.yml
@@ -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