diff --git a/.github/workflows/standard-build.yml b/.github/workflows/standard-build.yml new file mode 100644 index 0000000..bf60fec --- /dev/null +++ b/.github/workflows/standard-build.yml @@ -0,0 +1,12 @@ +name: build +run-name: Build triggered by ${{ github.actor }} +on: + push: + pull_request_target: + types: [opened, edited, ready_for_review] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: ./mvnw install \ No newline at end of file