Update README.md: mention required Epsilon version #26
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: Build and test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Maven 3.9.5 | |
uses: stCarolas/setup-maven@d6af6abeda15e98926a57b5aa970a96bb37f97d1 | |
with: | |
maven-version: 3.9.5 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: Build with Tycho | |
run: mvn --batch-mode -U -T 1C clean install | |
- name: Build with Tycho and older Epsilon | |
run: mvn --batch-mode -P epsilon-oldest-stable -U -T 1C clean test | |
- name: Build with plain Maven | |
run: mvn --batch-mode -f pom-plain.xml clean install |