From 9e24cfafa7c24f603629bc329863ba1aaf4aa230 Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 15 Aug 2025 17:35:10 -0700 Subject: [PATCH] run tests in github actions --- .github/workflows/test.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..21896d5 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,22 @@ +name: Run Tests + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup Hermit + uses: cashapp/activate-hermit@v1 + + - name: Run tests + run: gradle build + \ No newline at end of file