Fix ch4 gamma + terminal reward; add MC on-policy impl and exports fo… #28
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: Python (Chapters) | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| paths: | |
| - "ch2_rl_formulation/**" | |
| - "ch4_dynamic_programming/**" | |
| - "ch5_monte_carlo/**" | |
| - ".github/workflows/python-tests.yml" | |
| - ".github/workflows/_chapter-tests.yml" | |
| - "requirements.txt" | |
| pull_request: | |
| branches: [ "main" ] | |
| paths: | |
| - "ch2_rl_formulation/**" | |
| - "ch4_dynamic_programming/**" | |
| - "ch5_monte_carlo/**" | |
| - ".github/workflows/python-tests.yml" | |
| - ".github/workflows/_chapter-tests.yml" | |
| - "requirements.txt" | |
| jobs: | |
| ch2: | |
| uses: ./.github/workflows/_chapter-tests.yml | |
| with: | |
| chapter: ch2_rl_formulation | |
| ch4: | |
| uses: ./.github/workflows/_chapter-tests.yml | |
| with: | |
| chapter: ch4_dynamic_programming | |
| ch5: | |
| uses: ./.github/workflows/_chapter-tests.yml | |
| with: | |
| chapter: ch5_monte_carlo |