Adding Swarm FAST AEJxLPL, AEJxPBS, and AOBxFAC product collections. #198
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: main | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: [ staging, master ] | |
| schedule: | |
| # Weekly on Sunday | |
| - cron: '0 0 * * 0' | |
| jobs: | |
| pre-commit: | |
| name: Format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| - uses: pre-commit/action@v3.0.1 | |
| with: | |
| extra_args: --hook-stage manual --all-files | |
| checks: | |
| name: Check Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ["ubuntu-24.04", "macos-14", "windows-2022"] | |
| python-version: ["3.10", "3.11", "3.12"] | |
| include: | |
| - os: ubuntu-24.04 | |
| python-version: 3.9 | |
| - os: ubuntu-24.04 | |
| python-version: 3.13 | |
| - os: ubuntu-24.04 | |
| python-version: 3.14 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Install package | |
| run: uv sync ${{ github.event_name == 'schedule' && '--upgrade' || '--frozen' }} --group test | |
| - name: Configure token access | |
| run: | | |
| uv run viresclient set_token "https://vires.services/ows" ${{ secrets.VIRES_TOKEN_SWARM }} | |
| uv run viresclient set_default_server https://vires.services/ows | |
| - name: Test package | |
| run: uv run pytest -ra |