Skip to content

Bump com.google.protobuf:protobuf-kotlin from 3.19.4 to 3.25.5 #175

Bump com.google.protobuf:protobuf-kotlin from 3.19.4 to 3.25.5

Bump com.google.protobuf:protobuf-kotlin from 3.19.4 to 3.25.5 #175

Workflow file for this run

name: Build under Ubuntu
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
java-version: 11
distribution: zulu
cache: gradle
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
- name: Pull config
run: git submodule update --init --recursive
- name: Build project and run tests
shell: bash
run: ./gradlew build --stacktrace
# See: https://github.com/marketplace/actions/junit-report-action
- name: Publish Test Report
uses: mikepenz/action-junit-report@v2.8.4
if: always() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/test/TEST-*.xml'
- name: Upload code coverage report
uses: codecov/codecov-action@v2
with:
fail_ci_if_error: false
verbose: true