Skip to content

Commit

Permalink
Add Windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
eirnym committed Jan 9, 2023
1 parent 6289be9 commit 71661c1
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,22 @@ jobs:
cache: gradle
- name: Check spotless
run: ./gradlew spotlessCheck -S
buildTestOnWindows:
name: Build on Windows CI
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
java_version: [11, 17]
distribution: ["temurin"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install JDK ${{ matrix.distribution }} ${{ matrix.java_version }}
uses: actions/[email protected]
with:
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.java_version }}
cache: gradle
- name: Build project
run: ./gradlew build -x spotlessCheck -S

0 comments on commit 71661c1

Please sign in to comment.