textures on blank mould now work, update README slightly #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test-Server | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
types: [ opened, syncrhonize, reopened ] | |
workflow_dispatch: | |
jobs: | |
validate-gradle: | |
name: "Validate Gradle wrapper" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
submodules: true # Clone with vs-core submodule | |
- uses: gradle/wrapper-validation-action@v1 | |
test-server: | |
name: Test-Server | |
strategy: | |
matrix: | |
java: [ 17 ] # Build on Java 17 | |
serverType: [ 'fabric', 'forge', "quilt" ] | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 # Fail after 20 minutes | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
submodules: true # Clone with vs-core submodule | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v2 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'adopt' | |
- name: Cache Gradle packages | |
uses: actions/cache@v1 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
restore-keys: ${{ runner.os }}-gradle | |
- name: Test Server | |
uses: ValkyrienSkies/[email protected] | |
with: | |
serverType: ${{ matrix.serverType }} |