diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 160ff5810..943bbfc58 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -8,6 +8,28 @@ on: - "*" jobs: + Build-ad-windows: + strategy: + matrix: + java: [ 11, 17 ] + name: Build and Test Anomaly Detection Plugin on Windows + runs-on: windows-latest + steps: + - name: Setup Java ${{ matrix.java }} + uses: actions/setup-java@v1 + with: + java-version: ${{ matrix.java }} + # checkout Anomaly Detection + - name: Checkout Anomaly Detection + uses: actions/checkout@v2 + + - name: Build and Run Tests + run: | + ./gradlew.bat build + - name: Publish to Maven Local + run: | + ./gradlew publishToMavenLocal + Build-ad: strategy: matrix: