mirror of
https://github.com/signalapp/Signal-Server
synced 2026-02-23 23:35:14 +00:00
This runs the tests on every PR and branch push (including master merges). Handy for avoiding dumb compile bugs and validating changes.
16 lines
298 B
YAML
16 lines
298 B
YAML
name: Service CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up JDK 11
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 11
|
|
- name: Build with Maven
|
|
run: mvn -e -B package |