warn the pair that crosses over anti-meridian and stop processing it #677
Workflow file for this run
This file contains 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: Test and build | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
call-pytest-workflow: | |
# Docs: https://github.com/ASFHyP3/actions | |
uses: ASFHyP3/actions/.github/workflows/reusable-pytest.yml@v0.8.3 | |
with: | |
local_package_name: hyp3_isce2 | |
python_versions: >- | |
["3.9", "3.10"] | |
call-version-info-workflow: | |
# Docs: https://github.com/ASFHyP3/actions | |
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.8.3 | |
call-docker-ghcr-workflow: | |
needs: call-version-info-workflow | |
# Docs: https://github.com/ASFHyP3/actions | |
uses: ASFHyP3/actions/.github/workflows/reusable-docker-ghcr.yml@v0.8.3 | |
with: | |
version_tag: ${{ needs.call-version-info-workflow.outputs.version_tag }} | |
release_branch: main | |
develop_branch: develop | |
user: tools-bot | |
secrets: | |
USER_TOKEN: ${{ secrets.GITHUB_TOKEN }} |