CSP: add handler support #125
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 and Test LogicNG on different Operating Systems | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 11 | |
distribution: zulu | |
- name: Build with Maven | |
run: mvn -ntp package | |
# - name: Upload coverage to codecov.io | |
# uses: codecov/codecov-action@v3 | |
# with: | |
# token: TODO ${{ secrets.CODECOV_TOKEN }} | |
# name: LogicNG-Core | |
# file: ./target/site/jacoco/jacoco.xml | |
# flags: unittests | |
# env_vars: OS |