docs : Memperbaiki dokumentasi (#178) #179
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 Build Maven test | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up JDK 18 | |
| uses: actions/setup-java@v2 | |
| with: | |
| java-version: 18 | |
| distribution: 'adopt' | |
| - name: build project dengan maven | |
| run: mvn --batch-mode --update-snapshots verify | |