fix(dataclass): use latest trame-dataclass implementation #78
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: CI | |
| on: | |
| push: | |
| branches: [master, release] | |
| pull_request: | |
| branches: [master, release] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Miniconda | |
| uses: conda-incubator/setup-miniconda@v2 | |
| with: | |
| auto-update-conda: true | |
| activate-environment: quickview | |
| environment-file: quickview-env.yml # optional (see below) | |
| channel-priority: strict | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install . # Assumes installable via setup.py or pyproject.toml | |
| shell: bash -l {0} | |
| - name: Run help command | |
| run: | | |
| python -m e3sm_quickview.app --help | |
| shell: bash -l {0} |