Skip to content

fix(dataclass): use latest trame-dataclass implementation #78

fix(dataclass): use latest trame-dataclass implementation

fix(dataclass): use latest trame-dataclass implementation #78

Workflow file for this run

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}