Always use unix line endings on windows (#986)

* Always use unix line endings on windows

* Also run checks on windows.

* Fix binary files :)
This commit is contained in:
modmuss
2023-11-23 22:36:57 +00:00
committed by GitHub
parent 92da5adb48
commit b987b4e711
4 changed files with 19 additions and 47 deletions

View File

@@ -20,6 +20,18 @@ jobs:
- uses: gradle/wrapper-validation-action@v1
- run: gradle build check -x test --stacktrace --warning-mode fail
build_windows:
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- name: setup jdk
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
- uses: gradle/wrapper-validation-action@v1
- run: ./gradlew build check -x test --stacktrace --warning-mode fail
# This job is used to feed the test matrix of next job to allow the tests to run in parallel
prepare_test_matrix:
# Lets wait to ensure it builds before going running tests