Skip to content

updated file organizer and added notebook #51

updated file organizer and added notebook

updated file organizer and added notebook #51

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: build-package
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test:
# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest] # macos-latest
python-version: [3.9]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Getting repository
uses: actions/checkout@v3
with:
args: git submodule update --init --recursive
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pytest
- name: Run pytest
run: |
python -m pytest
# conda update -n base -c conda-forge conda
# conda install -c conda-forge gdal
# cd src/icepy4d