Disable motor slot for IN only pipes and add relevant tooltip (#981) #2414
  
    
      This file contains hidden or 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: Build master | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - id: var | |
| name: Setup variables | |
| run: echo ::set-output name=commit_hash::${GITHUB_SHA:0:7} | |
| - uses: actions/checkout@v2 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 17 | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Use gradle cache for faster builds | |
| uses: actions/cache@v1 | |
| with: | |
| path: ~/.gradle/caches | |
| key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
| - name: Build with Gradle | |
| run: ./gradlew build | |
| env: | |
| MI_VERSION: git-${{ steps.var.outputs.commit_hash }} | |
| - name: Gametest Server | |
| run: | | |
| ./gradlew runGameTestServer | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Modern Industrialization ${{ steps.var.outputs.commit_hash }} | |
| path: build/libs |