Skip to content

Commit

Permalink
add: testing for ie installation script
Browse files Browse the repository at this point in the history
  • Loading branch information
rguptar committed Jan 31, 2024
1 parent e72becd commit eff43e1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/scenario-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,22 @@ permissions:
id-token: write
contents: read
jobs:
test-ie-installation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check ie installation
run: |
cat scripts/install_from_release.sh | /bin/bash
if ! command -v ie; then
echo "ie not found"
exit 1
fi
if [ ! -d "~/scenarios" ]
then
echo "scenarios not found"
exit 1
fi
test-ocd-scenarios:
runs-on: ubuntu-latest
# This is needed in order to obtain OIDC tokens to sign this pipeline into
Expand Down

0 comments on commit eff43e1

Please sign in to comment.