-
Notifications
You must be signed in to change notification settings - Fork 8
33 lines (25 loc) · 875 Bytes
/
python-app.yml
File metadata and controls
33 lines (25 loc) · 875 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
name: FUDGE pip install
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.12", "3.13"]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Display environment
run: python -c "import sys, platform; print(platform.system()); print(sys.version)"
- name: Install dependencies
run: python -m pip install --upgrade pip setuptools wheel numpy h5py
- name: Install FUDGE
run: |
if [ "$RUNNER_OS" == "Windows" ]; then
export CC=gcc
fi
python -m pip install git+https://github.com/LLNL/fudge.git
shell: bash