Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: pycascades pipeline
on: [push]

jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 5

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
run: |
conda env update --file environment.yml --name base
- name: Lint
run: |
conda install pycodestyle
pycodestyle --show-source --show-pep8 --ignore=E133,E203,E221,E251,W503,E402 pycascades/core/**/*.py
- name: Test
run: |
python -m unittest pycascades/tests/test_core.py
Binary file removed amazon_rainforest/data/both_1deg_2003_01.nc
Binary file not shown.
Binary file removed amazon_rainforest/data/both_1deg_2003_02.nc
Binary file not shown.
Binary file removed amazon_rainforest/data/both_1deg_2003_03.nc
Binary file not shown.
Binary file removed amazon_rainforest/data/both_1deg_2003_04.nc
Binary file not shown.
Binary file removed amazon_rainforest/data/both_1deg_2003_05.nc
Binary file not shown.
Binary file removed amazon_rainforest/data/both_1deg_2003_06.nc
Binary file not shown.
Binary file removed amazon_rainforest/data/both_1deg_2003_07.nc
Binary file not shown.
Binary file removed amazon_rainforest/data/both_1deg_2003_08.nc
Binary file not shown.
Binary file removed amazon_rainforest/data/both_1deg_2003_09.nc
Binary file not shown.
Binary file removed amazon_rainforest/data/both_1deg_2003_10.nc
Binary file not shown.
Binary file removed amazon_rainforest/data/both_1deg_2003_11.nc
Binary file not shown.
Binary file removed amazon_rainforest/data/both_1deg_2003_12.nc
Binary file not shown.
254 changes: 0 additions & 254 deletions amazon_rainforest/evaluations/r_crit_risk_maps.py

This file was deleted.

Binary file not shown.
Binary file not shown.
Loading