Annotate configWindow for breakdown plots #6
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: ApplicationTesting | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
ApplicationTesting: | |
name: Application Tests | |
runs-on: ${{ matrix.os }} | |
defaults: # Required for conda environment activation | |
run: | |
shell: bash -el {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ] | |
steps: | |
- name: ⏬ Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.inputs.branch }} | |
- name: 🔧 Setup Environment | |
uses: ./.github/actions/SetupEnvironment | |
- name: 📑 Capture Environment | |
run: | | |
mamba info | |
mamba list | |
- name: 🧪 Run Tests | |
run: | | |
python -m unittest Tests.test_sample_data |