Search S3 if granules
are not Explicitly Provided
#216
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/[email protected] | ||
with: | ||
local_package_name: hyp3_srg | ||
python_versions: >- | ||
["3.10", "3.11", "3.12"] | ||
call-version-info-workflow: | ||
# Docs: https://github.com/ASFHyP3/actions | ||
uses: ASFHyP3/actions/.github/workflows/[email protected] | ||
with: | ||
python_version: "3.10" | ||
call-docker-ghcr-workflow-cpu: | ||
needs: call-version-info-workflow | ||
# Docs: https://github.com/ASFHyP3/actions | ||
uses: ASFHyP3/actions/.github/workflows/[email protected] | ||
Check failure on line 31 in .github/workflows/test-and-build.yml GitHub Actions / .github/workflows/test-and-build.ymlInvalid workflow file
|
||
with: | ||
version_tag: ${{ needs.call-version-info-workflow.outputs.version_tag }}.cpu | ||
release_branch: main | ||
develop_branch: develop | ||
user: tools-bot | ||
file: Dockerfile | ||
secrets: | ||
USER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
call-docker-ghcr-workflow-gpu: | ||
needs: call-version-info-workflow | ||
# Docs: https://github.com/ASFHyP3/actions | ||
uses: ASFHyP3/actions/.github/workflows/[email protected] | ||
with: | ||
version_tag: ${{ needs.call-version-info-workflow.outputs.version_tag }}.gpu | ||
release_branch: main | ||
develop_branch: develop | ||
user: tools-bot | ||
file: Dockerfile.gpu | ||
secrets: | ||
USER_TOKEN: ${{ secrets.GITHUB_TOKEN }} |