Skip to content

Fix whitespace in ci.yml #133

Fix whitespace in ci.yml

Fix whitespace in ci.yml #133

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ 'ubuntu-latest' ]
java: [ '17', '18', '19', '20', '21' ]
steps:
- name: Setup build
uses: MOEAFramework/.github/actions/setup-build@main
with:
java-version: ${{ matrix.java }}
setup-matlab: true
- name: Setup Radar Waveform code
run: |
cd native/Radar/bin
wget https://perspectival-classi.000webhostapp.com/code/radar_many.zip \
|| wget https://github.com/MOEAFramework/Archive/raw/main/evanhughes/radar_many.zip
unzip radar_many.zip
cp web_code/testpris.p testpris.p
- name: Build native programs
run: |
make -C native
- name: Build and test with Maven
run: |
mvn package
- name: Test example
run: |
mvn compile exec:java -Dexec.mainClass="org.moeaframework.benchmarks.Example"
- name: Test solve
run: |

Check failure on line 38 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 38
mvn compile exec:java -Dexec.mainClass="org.moeaframework.analysis.tools.Solve" \
-Dexec.args="--algorithm NSGAII --problem LRGV --numberOfEvaluations 10000 --output LRGV_Result.txt"
cat LRGV_Result.txt
- name: Validate README
run: |
mvn compile exec:java -Dexec.mainClass="org.moeaframework.util.cli.UpdateCodeSamples" -Dexec.args="README.md"