I'm migrating the repository's CI to use our centralized actions/workflows (see branch migrate_ci). This was mostly straight forward, I guess. With one workflow I did not really now what to do:
.github/workflows/mini.yml runs tests in a minimal conda environment on pushes and PRs to main. I tried to reconstruct this workflow with our centralized actions. What is actually the purpose of this workflow? On the same events, all those tests are run anyways (via push-pull-main.yml) using a slightly larger environment.
I'm migrating the repository's CI to use our centralized actions/workflows (see branch
migrate_ci). This was mostly straight forward, I guess. With one workflow I did not really now what to do:.github/workflows/mini.ymlruns tests in a minimal conda environment on pushes and PRs to main. I tried to reconstruct this workflow with our centralized actions. What is actually the purpose of this workflow? On the same events, all those tests are run anyways (viapush-pull-main.yml) using a slightly larger environment.