Running the CP e2e's in GHA with a custom version #269
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: PR Checks | ||
| on: | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| - 'release/**' | ||
| jobs: | ||
| pr-checks: | ||
| uses: CitrineInformatics/common-gh-actions/.github/workflows/repo-checks.yml@v1 | ||
| with: | ||
| src: src/citrine | ||
| e2e-tests: | ||
| needs: pr-checks | ||
| permissions: | ||
| checks: write | ||
| contents: read | ||
| id-token: write | ||
| # NOTE: using a branch SHA during testing | ||
| uses: CitrineInformatics/common-gh-actions/.github/workflows/run-e2e-tests.yml@feature/PNE-7587-provide-devkit-e2es | ||
|
Check failure on line 22 in .github/workflows/pr-checks.yml
|
||
| with: | ||
| CITRINE_PYTHON_VERSION: ${{ github.event.pull_request.head.sha }} | ||
| secrets: | ||
| DEVKIT_APP_ID: ${{ secrets.DEVKIT_APP_ID }} | ||
| DEVKIT_APP_PRIVATE_KEY: ${{ secrets.DEVKIT_APP_PRIVATE_KEY }} | ||