Update Gradle dependencies, refactor robot code, and add field utilities #21
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: | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| container: wpilib/roborio-cross-ubuntu:2024-22.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Grant execute permission | |
| run: chmod +x gradlew | |
| - name: Build robot code | |
| run: ./gradlew build |