build(deps): bump javalinVersion from 5.6.3 to 6.0.0 #1063
Workflow file for this run
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: tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
tests: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install tshark | |
uses: awalsh128/cache-apt-pkgs-action@v1 | |
with: | |
packages: tshark | |
version: 1.0 | |
- name: Install scat | |
run: pip3 install git+https://github.com/fgsect/scat | |
- name: Setup jdk11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- name: Test | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: check | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./build/reports/kover/report.xml |