forked from eclipse-epsilon/epsilon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
07a8215
commit aa288a0
Showing
1 changed file
with
7 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,13 @@ jobs: | |
distribution: 'temurin' | ||
cache: maven | ||
- name: Build with Maven | ||
run: ./build-and-test.sh | ||
run: mvn --batch-mode -U -T 1C clean install | ||
- name: Plugged-in Tests | ||
run: mvn --batch-mode -f tests/org.eclipse.epsilon.test verify -P plugged | ||
- name: Full Test Suite | ||
run: mvn --batch-mode -f tests/org.eclipse.epsilon.test surefire:test -P unit | ||
- name: Standalone Maven artifacts | ||
run: mvn --batch-mode -T 1C -f pom-plain.xml compile | ||
- name: Upload Log | ||
uses: actions/[email protected] | ||
with: | ||
|