Skip to content

Merge branch 'shooter' of https://github.com/team4099/Crescendo-2024 … #112

Merge branch 'shooter' of https://github.com/team4099/Crescendo-2024 …

Merge branch 'shooter' of https://github.com/team4099/Crescendo-2024 … #112

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.1.1-beta-4
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