improved performance of DTree generation by removing duplicate egdes #443
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: build | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Build with Maven | |
run: mvn -B package | |
- name: Upload coverage to codecov.io | |
uses: codecov/codecov-action@v1 | |
with: | |
name: LogicNG | |
file: ./target/site/jacoco/jacoco.xml | |
flags: unittests | |
env_vars: OS |