This repository was archived by the owner on Jun 20, 2025. It is now read-only.
Add DesktopPeer stubs, disable Taskbar, fix workflow #10
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: Java CI with Maven | |
| on: [push, workflow_dispatch] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - name: Build Maven and copy output | |
| run: bash build_and_out.sh | |
| - name: Upload build output | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: caciocavallo | |
| path: out |