Skip to content

Schedule

Schedule #1

Workflow file for this run

name: Schedule
on:
schedule:
# Runs every Sunday at 18:00 (UTC time)
- cron: "0 18 * * 0"
workflow_dispatch:
env:
EARTHENGINE_SERVICE_ACCOUNT: ${{ secrets.EARTHENGINE_SERVICE_ACCOUNT }}
EARTHENGINE_PROJECT: ${{ secrets.EARTHENGINE_PROJECT }}
jobs:
prerelease:
steps:

Check failure on line 15 in .github/workflows/prerelease.yaml

View workflow run for this annotation

GitHub Actions / Schedule

Invalid workflow file

The workflow is not valid. .github/workflows/prerelease.yaml (Line: 15, Col: 5): Required property is missing: runs-on
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: pip install .[test]
- name: Install EE pre-release
run: pip install --pre earthengine-api
- name: Install nox
run: pip install nox
- name: test with pytest
run: nox -s test --no-venv