Skip to content

Commit

Permalink
Merge pull request #17 from Team1559/gh-actions
Browse files Browse the repository at this point in the history
Create Github Actions CI build
  • Loading branch information
MathNerd28 authored Feb 22, 2025
2 parents c3cbb3c + 123badf commit fef7dfe
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/wpilib-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: WPILib Build with Gradle

on: [push]
permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
container: wpilib/roborio-cross-ubuntu:2025-22.04

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Build with Gradle
run: ./gradlew build

0 comments on commit fef7dfe

Please sign in to comment.