Skip to content

Add CMIP6 emissions scenarios #16

Add CMIP6 emissions scenarios

Add CMIP6 emissions scenarios #16

Workflow file for this run

name: Python package
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Install package
run: |
pip install .
- name: Test with pytest
run: |
pytest -v