Skip to content

Commit d85aa97

Browse files
committed
GitHub Actions to run a build check.
1 parent f57129d commit d85aa97

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/build_check.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Build check
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
7+
jobs:
8+
build_check:
9+
runs-on: ubuntu-latest
10+
container: wpilib/roborio-cross-ubuntu:2025-22.04
11+
steps:
12+
- uses: actions/checkout@v4
13+
- run: git config --global --add safe.directory $GITHUB_WORKSPACE
14+
- run: chmod +x gradlew
15+
- name: Build project
16+
run: ./gradlew build
17+

0 commit comments

Comments
 (0)