Name changed from postprocessors to diagnostics #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Pysteps | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
push: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
unit_tests: | |
name: Unit Tests (${{ matrix.python-version }}, ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ "ubuntu-latest", "windows-latest" ] | |
python-version: [ "3.11" ] | |
max-parallel: 6 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements_dev.txt | |
# - name: Install pysteps on MacOS | |
# if: matrix.os == 'macos-latest' | |
# working-directory: ${{github.workspace}} | |
# env: | |
# CC: gcc-9 | |
# CXX: g++-9 | |
# CXX1X: g++-9 | |
# HOMEBREW_NO_INSTALL_CLEANUP: 1 | |
# run: | | |
# brew update-reset | |
# brew update | |
# brew install gcc@9 | |
# gcc-9 --version | |
# pip install git+https://github.com/pySTEPS/pysteps | |
# python -c "import pysteps" | |
- name: Install pysteps on Windows and Linux | |
if: matrix.os != 'macos-latest' | |
run: | | |
pip install git+https://github.com/pySTEPS/pysteps | |
python -c "import pysteps" | |
- name: Run tests | |
run: pytest -x |