Merge pull request #36 from EO-DataHub/migrate-to-uv #291
Workflow file for this run
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: All checks | |
| on: | |
| push: | |
| tags: | |
| - 'v[0-9]+' | |
| - 'v[0-9]+-*' | |
| - 'v[0-9]+.[0-9]+' | |
| - 'v[0-9]+.[0-9]+-*' | |
| - 'v[0-9]+.[0-9]+.[0-9]+' | |
| - 'v[0-9]+.[0-9]+.[0-9]+-*' | |
| branches: | |
| - '**' | |
| pull_request: ~ | |
| jobs: | |
| qa: | |
| uses: EO-DataHub/github-actions/.github/workflows/qa-python.yaml@main | |
| security-scan: | |
| name: Call Security Scan | |
| uses: EO-DataHub/github-actions/.github/workflows/security.yaml@main | |
| unit-tests: | |
| name: Run unit tests | |
| uses: EO-DataHub/github-actions/.github/workflows/unit-tests-python-uv.yaml@main | |
| publish: | |
| name: Build and push Docker image | |
| uses: EO-DataHub/github-actions/.github/workflows/ecr-publish.yaml@main | |
| with: | |
| image_name: ${{ vars.IMAGE_NAME }} | |
| aws_role_arn: ${{ vars.AWS_ROLE_ARN }} | |
| aws_ecr_alias: ${{ vars.AWS_ECR_ALIAS }} | |
| permissions: | |
| id-token: write | |
| contents: read |