From 518f48077d23dbfdb0c5e918933150c701011ac7 Mon Sep 17 00:00:00 2001 From: AceiusRedshift <144858100+AceiusRedshift@users.noreply.github.com> Date: Wed, 17 Jan 2024 16:39:41 -0800 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..0b0dee8 --- /dev/null +++ b/.github/workflows/main.yml @@ -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