Skip to content

NREL -> NLR

NREL -> NLR #51

Workflow file for this run

name: CI Tests
# We run CI on push commits and pull requests on all branches
on: [push, pull_request]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Set up Miniconda Python ${{ matrix.python-version }}
uses: conda-incubator/setup-miniconda@v4
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
channels: defaults,conda-forge
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[develop]
- name: Run Tests
run: |
pytest landbosse/tests