Skip to content

WiP: txtfile packet dumper + start of tests #12

WiP: txtfile packet dumper + start of tests

WiP: txtfile packet dumper + start of tests #12

Workflow file for this run

name: Test and Reports
on:
push:
branches:
- main
pull_request:
types: [ opened, synchronize ]
jobs:
build:
runs-on: ubuntu-latest
environment:
name: dev
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
clean: true
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Build with Gradle
run: ./gradlew clean build --no-build-cache
- name: JVM unit Tests with Coverage Report
run: ./gradlew check
- name: Upload Lib Unit Tests Report to CodeCov
# https://github.com/codecov/codecov-action
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: libunittests
files: ./packetdumper/build/reports/jacoco/test/jacocoTestReport.xml