4.1.1: validate x coordinate and color every line of error message #47
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 | |
| on: [ push, pull_request, workflow_dispatch ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout repository | |
| uses: actions/checkout@v4 | |
| - name: validate gradle wrapper | |
| uses: gradle/wrapper-validation-action@v1 | |
| - name: setup java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: "temurin" | |
| java-version: 17 | |
| - name: build | |
| run: | | |
| chmod +x ./gradlew | |
| ./gradlew build | |
| - name: upload artifacts | |
| uses: actions/upload-artifact@v3 | |
| with: | |
| path: build/libs/ | |