fix: added case where a batch can contain multiple instances of the pk #11
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: Tests | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- 'prv_candidates_step/**' | ||
- '!prv_candidates_step/README.md' | ||
jobs: | ||
prv_candidates_step_lint: | ||
uses: ./.github/workflows/lint-template.yaml | ||
with: | ||
base-folder: 'prv_candidates_step' | ||
sources-folder: "prv_candidates_step" | ||
prv_candidates_step_unittest: | ||
uses: ./.github/workflows/poetry-tests-template.yaml | ||
with: | ||
base-folder: 'prv_candidates_step' | ||
python-version: "3.8" | ||
test-folder: "tests/unit" | ||
secrets: | ||
GH_TOKEN: '${{ secrets.ADMIN_TOKEN }}' | ||
prv_candidates_step_integration: | ||
uses: ./.github/workflows/poetry-tests-template.yaml | ||
with: | ||
base-folder: 'prv_candidates_step' | ||
python-version: '3.8' | ||
sources-folder: 'prv_candidates_step' | ||
test-folder: 'tests/integration' | ||
codecov-flags: '' # Do not upload | ||
secrets: | ||
GH_TOKEN: '${{ secrets.ADMIN_TOKEN }}' | ||
build-prv-candidates-dagger: | ||
needs: update-packages-dagger | ||
Check failure on line 36 in .github/workflows/prv_candidates_step.yaml GitHub Actions / TestsInvalid workflow file
|
||
uses: ./.github/workflows/template_build_with_dagger.yaml | ||
with: | ||
stage: staging | ||
extra-args: prv_candidates_step --dry-run | ||
secrets: | ||
GH_TOKEN: ${{ secrets.ADMIN_TOKEN }} |