This repository was archived by the owner on May 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +38
-4
lines changed Expand file tree Collapse file tree 3 files changed +38
-4
lines changed Original file line number Diff line number Diff line change 1+ # This workflow will build a Java project with Gradle
2+ # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
3+
4+ name : Java Servlet CI
5+
6+ on :
7+ push :
8+ branches : [ master ]
9+ paths-ignore :
10+ - ' **.md'
11+ - ' **.json'
12+ pull_request :
13+ branches : [ master ]
14+ paths-ignore :
15+ - ' **.md'
16+ - ' **.json'
17+
18+ jobs :
19+ build :
20+ runs-on : ${{ matrix.os }}
21+ strategy :
22+ max-parallel : 3
23+ matrix :
24+ os : [ubuntu-latest, macos-latest]
25+ java : [ 8 ]
26+
27+ steps :
28+ - name : Checkout code
29+ uses : actions/checkout@v2
30+ - name : Setup Java ${{ matrix.java }}
31+ uses : actions/setup-java@v1
32+ with :
33+ java-version : ${{ matrix.java }}
34+ - name : Build with Gradle
35+ run : ./gradlew build
36+ - name : Run tests
37+ run : ./gradlew test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 44
55# TaskRouter on Servlets
66
7- [ ![ Build Status ] ( https://travis-ci.org /TwilioDevEd/task-router-servlets. svg?branch=master )] ( https://travis-ci.org /TwilioDevEd/task-router-servlets )
7+ [ ![ Java Servlet CI ] ( https://github.com /TwilioDevEd/task-router-servlets/actions/workflows/gradle.yml/badge. svg )] ( https://github.com /TwilioDevEd/task-router-servlets/actions/workflows/gradle.yml )
88
99Use Twilio to provide your user with multiple options through phone calls, so
1010they can be assisted by an agent specialized in the chosen topic. This is
You can’t perform that action at this time.
0 commit comments