-
Notifications
You must be signed in to change notification settings - Fork 3
34 lines (28 loc) · 821 Bytes
/
test.yml
File metadata and controls
34 lines (28 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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}