diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml new file mode 100644 index 0000000..7ec0147 --- /dev/null +++ b/.github/workflows/android.yml @@ -0,0 +1,21 @@ +name: Android CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Build with Gradle + run: ./gradlew build diff --git a/benchmarks/pom.xml b/benchmarks/pom.xml index d0d2566..6598cbb 100644 --- a/benchmarks/pom.xml +++ b/benchmarks/pom.xml @@ -60,7 +60,7 @@ io.netty netty-codec-http - 4.0.15.Final + 4.1.71.Final