Bump spring.version from 5.3.27 to 6.1.14 #188
Workflow file for this run
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 | |
on: pull_request | |
jobs: | |
ubuntu-java-11: | |
name: Ubuntu (Java 11) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Checkout phoenicis | |
uses: actions/checkout@master | |
with: | |
repository: PhoenicisOrg/phoenicis | |
ref: refs/tags/v5.0-alpha.3 | |
path: ./phoenicis | |
- name: Build and install phoenicis | |
run: cd ./phoenicis && mvn -DskipTests clean install | |
- name: Checkout phoenicis-backend | |
uses: actions/checkout@v2 | |
with: | |
path: ./phoenicis-backend | |
- name: Build phoenicis-backend | |
run: cd ./phoenicis-backend && mvn clean package |