Skip to content

Adding network information to logs #317

Adding network information to logs

Adding network information to logs #317

Workflow file for this run

name: Continous Integration
on:
pull_request:
push:
branches:
- "main"
permissions:
contents: read
jobs:
process:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: lint
run: ./gradlew lint
- name: Verify OSS compliance
run: ./gradlew verifyNoticeFile
- name: Build
run: ./gradlew assemble
- name: Test
run: ./tests.sh
- name: Store test results
if: success() || failure()
uses: actions/upload-artifact@v3
with:
name: test-results
path: |
**/build/test-results/testRelease*/TEST-*.xml
**/build/test-results/test/TEST-*.xml