Fix infinite loop in PackedInputStream when the supplied ArrayInputSt… #93
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Cap'n Proto | |
run: | | |
export DEBIAN_FRONTEND=noninteractive | |
sudo apt-get install -y capnproto libcapnp-dev | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Build with Maven | |
run: | | |
make | |
mvn compile | |
- name: Run tests | |
run: mvn test |