LPD-29388 Technical Task | Update Eclipse plugin #322
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: CI Build | |
on: [pull_request] | |
env: | |
LC_ALL: en_US.UTF-8 | |
jobs: | |
CheckSourceFormatting: | |
name: Check source formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout liferay-ide | |
uses: actions/checkout@v2 | |
- name: Checkout liferay-ide-m2-repository | |
uses: actions/checkout@v2 | |
with: | |
repository: gamerson/liferay-ide-m2-repository | |
path: liferay-ide-m2-repository | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: sf.sh | |
shell: bash | |
working-directory: build/com.liferay.ide.build.source.formatter | |
run: | | |
./csf.sh | |
Verify: | |
name: Verify | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- name: Checkout liferay-ide | |
uses: actions/checkout@v2 | |
- name: Checkout liferay-ide-m2-repository | |
uses: actions/checkout@v2 | |
with: | |
repository: gamerson/liferay-ide-m2-repository | |
path: liferay-ide-m2-repository | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: 'zulu' | |
cache: maven | |
- name: Cache | |
uses: actions/cache@v1.1.0 | |
with: | |
path: liferay-ide-m2-repository/.cache/download-maven-plugin | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Run tests | |
shell: bash | |
run: | | |
./run-tests.sh |