Enable publicapi to run on CF #5044
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: Manifest Tests | |
on: | |
pull_request: | |
paths: | |
- 'templates/**' | |
- 'jobs/**' | |
- 'packages/**' | |
concurrency: | |
group: "${{ github.workflow }}/${{ github.ref }}" | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
test_manifest: | |
name: Manifest Tests | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run Tests - Manifest | |
run: | | |
set -e | |
pushd templates | |
MANIFEST_PATH=$PWD/app-autoscaler.yml \ | |
OPERATION_DIR_PATH=$PWD/../operations \ | |
./manifest_tests.sh | |
popd | |