Skip to content

Reduce nsteps to 10 for CI #37

Reduce nsteps to 10 for CI

Reduce nsteps to 10 for CI #37

Workflow file for this run

name: GNS Train and Test
on:
push:
jobs:
gns:
runs-on: ubuntu-latest
container:
image: ghcr.io/geoelements/gns:dataloader
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: PyTest
run: |
pytest test/
- name: Train GNS
run: |
TMP_DIR="../gns-sample"
DATASET_NAME="WaterDropSample"
git clone https://github.com/geoelements/gns-sample ../gns-sample
python -m gns.train mode="train" training.steps=10
- name: Black linter
run: |
black --check .