8000 Merge pull request #141 from ncsa/bugfix/str_int_bug · ncsa/NEAT@119e118 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Merge pull request #141 from ncsa/bugfix/str_int_bug #256

Merge pull request #141 from ncsa/bugfix/str_int_bug

Merge pull request #141 from ncsa/bugfix/str_int_bug #256

Workflow file for this run

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
0