From c60e6c851ca9c4988c8db30e2e1f40138a0023a2 Mon Sep 17 00:00:00 2001 From: Hannes Achleitner Date: Mon, 15 Feb 2021 09:06:28 +0100 Subject: [PATCH 1/2] .gitignore for Intellij --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 72ab296f63..7f35602f68 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,7 @@ libs/*.jar out/ */out/ .settings/ +local.properties pg/*.asc pg/*.bak From 22d3929da000cb9b26057ebe0fe77031afed5fd7 Mon Sep 17 00:00:00 2001 From: Hannes Achleitner Date: Mon, 15 Feb 2021 09:08:24 +0100 Subject: [PATCH 2/2] Action for pull request --- .github/workflows/pull-request.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/pull-request.yml diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml new file mode 100644 index 0000000000..e63b1d206f --- /dev/null +++ b/.github/workflows/pull-request.yml @@ -0,0 +1,28 @@ +name: Pull request + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - uses: gradle/actions/wrapper-validation@v4 + - name: Build with Gradle + run: ./gradlew build + - name: Archive Test report + uses: actions/upload-artifact@v2 + if: ${{ always() }} + with: + name: BC-Test-report + path: core/build/reports/tests/test