From b1421c48edf2bde3f07b1c6117859704b91e3403 Mon Sep 17 00:00:00 2001 From: Yacine Kheddache Date: Thu, 22 Aug 2024 15:59:03 +0200 Subject: [PATCH] Update build-test.yml Add exclusion rule to build-test.yml for all MD files #24 Tested on a local fork: https://github.com/yada/microcks-testcontainers-java-spring-demo --- .github/workflows/build-test.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 5d8914e..73947e7 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -4,6 +4,17 @@ on: push: branches: - '**' + paths-ignore: + - '.github/**' + - '.gitignore' + - 'LICENSE' + - '*.md' + pull_request: + paths-ignore: + - '.github/**' + - '.gitignore' + - 'LICENSE' + - '*.md' jobs: test: @@ -20,4 +31,4 @@ jobs: cache: 'maven' - name: Build Java components - run: mvn -B test \ No newline at end of file + run: mvn -B test