Skip to content

Commit

Permalink
Build to test dependency in external projects
Browse files Browse the repository at this point in the history
  • Loading branch information
radcortez committed Jul 31, 2023
1 parent d8d9b0c commit 0885af5
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,20 @@ jobs:
java-version: ${{matrix.java}}

- name: build with maven
run: mvn -B formatter:validate verify --file pom.xml
run: mvn -B formatter:validate install --file pom.xml

- uses: actions/checkout@v2
name: checkout smallrye-config
with:
repository: smallrye/smallrye-config
path: smallrye-config

- name: test with smallrye-config
run: |
cd smallrye-config
mvn versions:update-property -Dproperty=version.smallrye.testing -DallowSnapshots=true -N
git diff pom.xml
mvn install
quality:
needs: [build]
Expand Down

0 comments on commit 0885af5

Please sign in to comment.