Skip to content

Commit

Permalink
Add build.yml file for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
TheFlameFish committed Jan 21, 2025
1 parent 8283442 commit a412793
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build

on:
push:
pull_request:

jobs:
build:
name: Build
runs-on: ubuntu-latest
container: wpilib/roborio-cross-ubuntu:2025-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Grant execute permission
run: chmod +x gradlew
- name: Build robot code
run: ./gradlew build

0 comments on commit a412793

Please sign in to comment.