Skip to content

Commit

Permalink
Try running on Windows in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gbevin committed Oct 1, 2023
1 parent 4e64675 commit 844b2b3
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/bld.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,3 +136,32 @@ jobs:
- name: Run tests
run: >-
./bld clean download compile test
build-windows:
runs-on: windows-latest

strategy:
matrix:
java-version: [ 17, 20 ]

steps:
- name: Configure git line endings
run: git config --global core.autocrlf input

- name: Checkout source repository
uses: actions/checkout@v4
with:
clean: true
submodules: 'true'
fetch-depth: 0

- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: ${{ matrix.java-version }}
check-latest: true

- name: Run tests
run: >-
.\bld.bat clean download compile test

0 comments on commit 844b2b3

Please sign in to comment.