From e8d19311997f924c3c7adfcff2322f4f0ab0d8fe Mon Sep 17 00:00:00 2001 From: dotasek Date: Tue, 9 May 2023 16:08:13 -0400 Subject: [PATCH] Create smoke-tests.yml --- .github/workflows/smoke-tests.yml | 34 +++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/smoke-tests.yml diff --git a/.github/workflows/smoke-tests.yml b/.github/workflows/smoke-tests.yml new file mode 100644 index 0000000..0467b36 --- /dev/null +++ b/.github/workflows/smoke-tests.yml @@ -0,0 +1,34 @@ +# This workflow will build the Java project with Maven and peform IntelliJ smoke tests +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven + +name: Smoke Tests + +on: + push: + branches: + - '**' + paths-ignore: + - "charts/**" + pull_request: + branches: [ master ] + paths-ignore: + - "charts/**" + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - name: Checkout project + uses: actions/checkout@v2 + - name: Set up JDK 17 + uses: actions/setup-java@v1 + with: + java-version: 17 + - name: Build with Maven + run: mvn -B package --file pom.xml verify + - name: Download and install HTTP client + run: | + curl -f -L -o ijhttp.zip "https://jb.gg/ijhttp/latest" + unzip ijhttp.zip