From ddebac4b1efe007e28351c4b93a516e94063f924 Mon Sep 17 00:00:00 2001 From: Bartosz Spyrko-Smietanko Date: Fri, 19 Jan 2024 18:00:38 +0000 Subject: [PATCH] Add test workflow --- .github/workflows/main.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 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..a3e0923 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,37 @@ +name: Build + +on: + push: + branches: + - main + paths-ignore: + - '.gitignore' + - 'README.md' + pull_request: + paths-ignore: + - '.gitignore' + - 'README.md' + +jobs: + build: + name: 'Build and test' + runs-on: 'ubuntu-latest' + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Set up JDK 11 + uses: actions/setup-java@v2 + with: + java-version: 11 + distribution: 'adopt' + cache: maven + - name: Build and test + run: mvn clean install + - uses: actions/upload-artifact@v2 + if: failure() + with: + name: surefire-reports + path: '**/surefire-reports/*.txt' + +