From 802f09c903b0f09a4e00ed298f8c87a13e11043e Mon Sep 17 00:00:00 2001 From: Mahmoud Ben Hassine Date: Fri, 30 Apr 2021 17:06:13 +0200 Subject: [PATCH] Add CI build manifest for spring-batch-bigquery --- .github/workflows/spring-batch-bigquery.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/spring-batch-bigquery.yml diff --git a/.github/workflows/spring-batch-bigquery.yml b/.github/workflows/spring-batch-bigquery.yml new file mode 100644 index 0000000..2aa55a4 --- /dev/null +++ b/.github/workflows/spring-batch-bigquery.yml @@ -0,0 +1,21 @@ +name: Spring Batch BigQuery + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout source code + uses: actions/checkout@v2 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Build with Maven + run: mvn -B package --file pom.xml + working-directory: spring-batch-bigquery