Use Springer 2023 template and remove unused packages #159
Workflow file for this run
This file contains 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: test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: "ubuntu-latest" | |
name: test | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install mamba | |
uses: mamba-org/provision-with-micromamba@main | |
with: | |
environment-file: environment.yml | |
environment-name: ollie-optimization-paper | |
channels: conda-forge | |
extra-specs: | | |
python="3.9" | |
- name: run tests | |
shell: bash -l {0} | |
run: | | |
micromamba info | |
micromamba list | |
python thesis-files/MultiPhaseOllieOptimization.py |