Skip to content

Incorporate metrics into the striff generation process (#25) #41

Incorporate metrics into the striff generation process (#25)

Incorporate metrics into the striff generation process (#25) #41

Workflow file for this run

name: Java CI
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'microsoft'
cache: 'maven'
- name: Install graphviz dependency for tests
run: sudo apt-get install -y graphviz
- name: "Run tests and package"
run: "mvn clean package assembly:single"
- name: "Codecov report"
run: bash <(curl -s https://codecov.io/bash)
env:
MAVEN_OPTS: "-Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.http.ssl.ignore.validity.dates=true"