Skip to content

Adds running API server to testing CI #32

Adds running API server to testing CI

Adds running API server to testing CI #32

Workflow file for this run

name: 🎯 Pull Request
on:
pull_request:
jobs:
build:
name: Build
uses: ./.github/workflows/Build.yml
test:
name: Test
needs: build
uses: ./.github/workflows/Test.yml

Check failure on line 14 in .github/workflows/PullRequest.yml

View workflow run for this annotation

GitHub Actions / 🎯 Pull Request

Invalid workflow file

The workflow is not valid. In .github/workflows/PullRequest.yml (Line: 14, Col: 11): Error from called workflow pitt-crc/keystone-python-client/.github/workflows/Test.yml@af28bed6bcc528fe1cd0e07a171165f7a051dced (Line: 20, Col: 11): A sequence was not expected In .github/workflows/PullRequest.yml (Line: 14, Col: 11): Error from called workflow pitt-crc/keystone-python-client/.github/workflows/Test.yml@af28bed6bcc528fe1cd0e07a171165f7a051dced (Line: 22, Col: 11): Unexpected value 'DJANGO_SUPERUSER_USERNAME'
secrets: inherit
qa:
name: QA
needs: build
uses: ./.github/workflows/QA.yml
secrets: inherit
report-pr-status:
name: Report PR Status
runs-on: ubuntu-latest
needs: [ test, qa ]
if: always()
steps:
- name: Check PR status
if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'skipped') || contains(needs.*.result, 'cancelled') }}
run: exit 1