Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AceiusRedshift authored Jan 18, 2024
1 parent a9d5f03 commit 518f480
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# I suggested to Michael that we set up automatic builds so when something starts failing or someone forgets to test before pushing we can know
# I don't think this should get anywhere near our workflows quota but if it does you can blame Aceius
name: Auto Build

on:
push:

jobs:
build-gradle-project:
runs-on: ubuntu-latest
steps:
- name: Setup Repo
uses: actions/checkout@v3
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Building Repo
run: ./gradlew build

0 comments on commit 518f480

Please sign in to comment.