Skip to content

Bump org.choco-solver:choco-solver from 4.10.13 to 4.10.14 #249

Bump org.choco-solver:choco-solver from 4.10.13 to 4.10.14

Bump org.choco-solver:choco-solver from 4.10.13 to 4.10.14 #249

Workflow file for this run

name : CyptatorTest
on : push
jobs :
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
cache: 'maven'
- name: Cache local Maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Test with Maven
run: mvn test --no-transfer-progress --file pom.xml
- name: Extended test with Maven
run: mvn test -Dtest=ExtensiveTesting --no-transfer-progress --file pom.xml