Skip to content

Commit

Permalink
Merge pull request #1 from STMARobotics/actions
Browse files Browse the repository at this point in the history
Add actions build
  • Loading branch information
agasser authored Oct 4, 2024
2 parents 6af9bb6 + b7c601d commit 1b3d03d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build-robot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI Build

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checking out branch
uses: actions/checkout@v4

- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
cache: 'gradle'

- name: Setup Android SDK
uses: android-actions/setup-android@v3

- name: Build Robot
run: ./gradlew --no-daemon build

0 comments on commit 1b3d03d

Please sign in to comment.