Merge pull request #141 from ncsa/bugfix/str_int_bug #256
This file contains hidden or 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: NEAT Unit Tests | |
on: | |
push: | |
branches: [develop, main] | |
pull_request: | |
branches: [main] | |
jobs: | |
detailed_test_execution: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: environment.yml | |
environment-name: test_neat | |
cache-environment: true | |
- name: Run NEAT Simulations | |
run: | | |
for i in {1..11}; do | |
micromamba run -n test_neat python -m neat --log-level DEBUG read-simulator -c data/test_configs/config_test$i.yml -o ../outputs/test${i}_read-simulator; | |
done |