From bb1c5171b9ed49872c9d1c28d033a42f9f1314c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=20Alc=C3=A9rreca?= Date: Tue, 3 Dec 2024 16:36:39 +0100 Subject: [PATCH] Create test-all.yml workflow --- .github/workflows/test-all.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/test-all.yml diff --git a/.github/workflows/test-all.yml b/.github/workflows/test-all.yml new file mode 100644 index 00000000..bfccb660 --- /dev/null +++ b/.github/workflows/test-all.yml @@ -0,0 +1,23 @@ +# Workflow name +name: Build + Test all +on: + # When it will be triggered + # And in which branch + pull_request: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set Up JDK + uses: actions/setup-java@v3 + with: + distribution: 'zulu' # See 'Supported distributions' for available options + java-version: '17' + cache: 'gradle' + + - name: Build project and run local and device tests + run: ./test_all.sh