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 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
name: Build and Test Windows/MacOSX
on:
pull_request:
push:
branches: [master]
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [windows-latest, macos-latest]
platform: [x64, x32]
exclude:
- os: macos-latest
platform: x32
steps:
- uses: actions/checkout@v4
steps:
- uses: actions/checkout@v4
- name: Setup Conda
uses: s-weigand/setup-conda@v1
with:
activate-conda: false
conda-channels: conda-forge
- name: Python ${{ matrix.python-version }}
shell: bash -l {0}
run: |
conda create --name TEST python=${{ matrix.python-version }} numpy cython pip pytest wheel pyproj eccodes --strict-channel-priority
source activate TEST
pip install -e . --no-deps --force-reinstall
conda info --all
conda list
- name: Tests
shell: bash -l {0}
run: |
source activate TEST
if [ "windows-latest" == "${{ matrix.os }}" ]; then
export ECCODES_DEFINITION_PATH=$CONDA_PREFIX/Library/share/eccodes/definitions
fi
cd test
python test.py
pytest -vv test_latlons.py
|