Skip to content

Worlds 2024 code (#48) #551

Worlds 2024 code (#48)

Worlds 2024 code (#48) #551

Workflow file for this run

name: Build Project
on: [ push ]
jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# This grabs the WPILib docker container
container: wpilib/roborio-cross-ubuntu:2024-22.04
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Grant execute permission for gradlew
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build