Skip to content

Commit

Permalink
Merge pull request #11 from climateintelligence/codeSprint
Browse files Browse the repository at this point in the history
Code sprint final mergin
  • Loading branch information
PaoloBonettiPolimi authored Oct 9, 2024
2 parents d11a0ad + 07385c2 commit 02b09c3
Show file tree
Hide file tree
Showing 21 changed files with 273 additions and 122 deletions.
6 changes: 6 additions & 0 deletions .eggs/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
This directory contains eggs that were downloaded by setuptools to build, test, and run plug-ins.

This directory caches those eggs to prevent repeated downloads.

However, it is safe to delete this directory.

12 changes: 7 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.11"]
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive
- name: Install packages
run: |
sudo apt-get -y install pandoc
sudo apt-get -y install pandoc metview
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
Expand All @@ -29,11 +29,13 @@ jobs:
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
- name: Test with pytest ⚙️
run: make test
run:
export METVIEW_PYTHON_START_TIMEOUT=20
make test
- name: Lint with flake8 ⚙️
run: make lint
if: matrix.python-version == 3.9
if: matrix.python-version == 3.11
- name: Build docs 🏗️
run: make docs
if: matrix.python-version == 3.9
if: matrix.python-version == 3.11

Loading

0 comments on commit 02b09c3

Please sign in to comment.