Tried to support piecewise constant signals but not working well #377
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: JUnit | |
on: | |
push: | |
paths-ignore: | |
- 'README.md' | |
jobs: | |
JUnit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
java-package: jdk | |
architecture: x64 | |
distribution: 'adopt' | |
- name: Install LTSMin | |
run: | | |
wget https://github.com/Meijuh/ltsmin/releases/download/v3.1.0/ltsmin-v3.1.0-linux.tgz | |
tar xvf ltsmin-v3.1.0-linux.tgz | |
sudo cp -r v3.1.0/* /usr | |
- name: Cache local Maven repository | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Build with Maven | |
run: mvn dependency:go-offline --projects core | |
- name: Test with Maven | |
run: mvn test -DskipTests=False --projects core | |
- name: Upload the test coverage to Codecov | |
uses: codecov/codecov-action@v3.1.1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
directory: ./target/my-reports |