# # MIT License # # Copyright (c) 2020 Jannis Weis # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # # name: CI on: push: branches: - 'master' pull_request: branches: - '*' jobs: windows: name: Windows (Java 11) runs-on: windows-latest steps: - uses: actions/checkout@v2 with: fetch-depth: 10 - name: Set up JDK 11 uses: actions/setup-java@v1 with: java-version: 11 - name: Build run: ./gradlew build -PskipAutostyle --info -x test - name: Test run: ./gradlew test -PskipAutostyle --info - name: Upload Results uses: actions/upload-artifact@v1 with: name: windows-test-results path: build/test_results linux: name: Linux (Java 8) runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: fetch-depth: 10 - name: Set up JDK 8 uses: actions/setup-java@v1 with: java-version: 8 - name: Build run: ./gradlew build -PskipAutostyle --info -x test - name: Test run: ./gradlew test -PskipAutostyle --info - name: Upload Results uses: actions/upload-artifact@v1 with: name: linux-test-results path: build/test_results macos: name: macOS (Java 11) runs-on: macos-latest steps: - uses: actions/checkout@v2 with: fetch-depth: 10 - name: Set up JDK 11 uses: actions/setup-java@v1 with: java-version: 11 - name: Build run: ./gradlew build -PskipAutostyle --info -x test - name: Test run: ./gradlew test -PskipAutostyle --info - name: Upload Results uses: actions/upload-artifact@v1 with: name: macOS-test-results path: build/test_results