Merge pull request #164 from fabiobrz/doc.freeze-versions.002 #532
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Intersmash - Simple build workflow | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
simple-build: | |
if: '! github.event.pull_request.draft' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Maven | |
uses: stCarolas/[email protected] | |
with: | |
maven-version: 3.8.7 | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Build with Maven | |
run: mvn -version ; mvn clean install -U -B -DskipTests ; mvn test -pl testsuite/deployments/deployments-provider,core,provisioners -am |