Skip to content

Commit

Permalink
Added config_template path.
Browse files Browse the repository at this point in the history
  • Loading branch information
Keshav committed May 16, 2024
1 parent a61f0f7 commit 91945f9
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,39 +25,42 @@ jobs:
conda env create -f environment.yml -n test_neat
source activate test_neat
poetry install
cd config_template
- name: Run NEAT Simulation for config_test1
run: |
source activate test_neat
python -m neat --log-level DEBUG read-simulator -c config_test1.yml -o ../outputs/test1_read-simulator
python -m neat --log-level DEBUG read-simulator -c config_template/config_test1.yml -o ../outputs/test1_read-simulator
- name: Run NEAT Simulation for config_test2
run: python -m neat --log-level DEBUG read-simulator -c config_test2.yml -o ../outputs/test2_read-simulator
run: |
source activate test_neat
python -m neat --log-level DEBUG read-simulator -c config_template/config_test2.yml -o ../outputs/test2_read-simulator
- name: Run NEAT Simulation for config_test3
run: python -m neat --log-level DEBUG read-simulator -c config_test3.yml -o ../outputs/test3_read-simulator
run: |
source activate test_neat
python -m neat --log-level DEBUG read-simulator -c config_template/config_test3.yml -o ../outputs/test3_read-simulator
- name: Run NEAT Simulation for config_test4
run: python -m neat --log-level DEBUG read-simulator -c config_test4.yml -o ../outputs/test4_read-simulator
run: python -m neat --log-level DEBUG read-simulator -c config_template/config_test4.yml -o ../outputs/test4_read-simulator

- name: Run NEAT Simulation for config_test5
run: python -m neat --log-level DEBUG read-simulator -c config_test5.yml -o ../outputs/test5_read-simulator
run: python -m neat --log-level DEBUG read-simulator -c config_template/config_test5.yml -o ../outputs/test5_read-simulator

- name: Run NEAT Simulation for config_test6
run: python -m neat --log-level DEBUG read-simulator -c config_test6.yml -o ../outputs/test6_read-simulator
run: python -m neat --log-level DEBUG read-simulator -c config_template/config_test6.yml -o ../outputs/test6_read-simulator

- name: Run NEAT Simulation for config_test7
run: python -m neat --log-level DEBUG read-simulator -c config_test7.yml -o ../outputs/test7_read-simulator
run: python -m neat --log-level DEBUG read-simulator -c config_template/config_test7.yml -o ../outputs/test7_read-simulator

- name: Run NEAT Simulation for config_test8
run: python -m neat --log-level DEBUG read-simulator -c config_test8.yml -o ../outputs/test8_read-simulator
run: python -m neat --log-level DEBUG read-simulator -c config_template/config_test8.yml -o ../outputs/test8_read-simulator

- name: Run NEAT Simulation for config_test9
run: python -m neat --log-level DEBUG read-simulator -c config_test9.yml -o ../outputs/test9_read-simulator
run: python -m neat --log-level DEBUG read-simulator -c config_template/config_test9.yml -o ../outputs/test9_read-simulator

- name: Run NEAT Simulation for config_test10
run: python -m neat --log-level DEBUG read-simulator -c config_test10.yml -o ../outputs/test10_read-simulator
run: python -m neat --log-level DEBUG read-simulator -c config_template/config_test10.yml -o ../outputs/test10_read-simulator

- name: Run NEAT Simulation for config_test11
run: python -m neat --log-level DEBUG read-simulator -c config_test11.yml -o ../outputs/test11_read-simulator
run: python -m neat --log-level DEBUG read-simulator -c config_template/config_test11.yml -o ../outputs/test11_read-simulator

0 comments on commit 91945f9

Please sign in to comment.