Skip to content

Commit

Permalink
Update build-test.yml
Browse files Browse the repository at this point in the history
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
  • Loading branch information
yada authored Aug 22, 2024
1 parent 9aeb09d commit b1421c4
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ on:
push:
branches:
- '**'
paths-ignore:
- '.github/**'
- '.gitignore'
- 'LICENSE'
- '*.md'
pull_request:
paths-ignore:
- '.github/**'
- '.gitignore'
- 'LICENSE'
- '*.md'

jobs:
test:
Expand All @@ -20,4 +31,4 @@ jobs:
cache: 'maven'

- name: Build Java components
run: mvn -B test
run: mvn -B test

0 comments on commit b1421c4

Please sign in to comment.