Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle

name: Java Servlet CI

on:
push:
branches: [ master ]
paths-ignore:
- '**.md'
- '**.json'
pull_request:
branches: [ master ]
paths-ignore:
- '**.md'
- '**.json'

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 3
matrix:
os: [ubuntu-latest, macos-latest]
java: [ 8 ]

steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Java ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Gradle
run: ./gradlew build
- name: Run tests
run: ./gradlew test
3 changes: 0 additions & 3 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# TaskRouter on Servlets

[![Build Status](https://travis-ci.org/TwilioDevEd/task-router-servlets.svg?branch=master)](https://travis-ci.org/TwilioDevEd/task-router-servlets)
[![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)

Use Twilio to provide your user with multiple options through phone calls, so
they can be assisted by an agent specialized in the chosen topic. This is
Expand Down