Skip to content

Raising exception on failed write #63

Raising exception on failed write

Raising exception on failed write #63

name: Build and test the library
on:
push:
jobs:
build-and-test:
name: Build and test
runs-on: ubuntu-latest
env:
DATAMESH_TOKEN: ${{ secrets.DATAMESH_TOKEN }}
steps:
-
name: Checkout repo
uses: actions/checkout@v4
-
name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
-
name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install . 'oceanum[extra,test]'
-
name: Test
run: pytest -s -v tests