Skip to content

Commit

Permalink
Merge pull request #15 from meteocat/wave
Browse files Browse the repository at this point in the history
Add wave reader
  • Loading branch information
sotis-am authored Jan 17, 2024
2 parents 09e91b9 + 5a5ebb1 commit 6fa4dc7
Show file tree
Hide file tree
Showing 7 changed files with 478 additions and 237 deletions.
Binary file modified .coverage
Binary file not shown.
30 changes: 23 additions & 7 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,38 @@ on: [pull_request]
jobs:
build-linux:
runs-on: ubuntu-latest
# To activate environment: https://stackoverflow.com/a/72735253/11135165
defaults:
run:
shell: bash -el {0}
strategy:
max-parallel: 5

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: '3.11'
activate-environment: unimodel-dev
environment-file: environment_dev.yml
python-version: 3.11.4
auto-activate-base: false
#- name: Set up Python 3.11.4
# uses: actions/setup-python@v4
# with:
# python-version: '3.11.4'
- 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_dev.yml --name base
# - name: Install dependencies
# run: |
# conda env create --file environment_dev.yml
# - name: Init conda
# run: |
# conda init
# - name: Activate environment
# run: |
# conda activate unimodel-dev
- name: Lint with flake8
run: |
conda install flake8
Expand Down
Loading

0 comments on commit 6fa4dc7

Please sign in to comment.