Skip to content

Commit

Permalink
Merge pull request #1017 from GSA/fix-egress-check
Browse files Browse the repository at this point in the history
Fix typos in the egress-check file + optimize mem usage
  • Loading branch information
nickumia-reisys authored Aug 3, 2023
2 parents a000336 + 07e875c commit 536a0c4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/egress_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,18 @@ on:

jobs:
egress-check:
name: ${{ matrix.app - matrix-environ - matrix.command }}
name: ${{matrix.app}} - ${{matrix.environ}} - ${{matrix.command}}
runs-on: ubuntu-latest
environment: ${{ matrix.environ }}
strategy:
fail-fast: false
max-parallel: 7
matrix:
command:
- '#GoodDomainTest;
curl -I -Ls --http1.1 https://gsa.gov | grep -q "HTTP/1.1 200 OK"'
curl -I -Ls --http1.1 https://gsa.gov | grep -q \"HTTP/1.1 200 OK\"'
- '#BadDomainTest;
curl -I -Ls --http1.1 https://yahoo.com | grep -q "HTTP/1.1 403 Forbidden"'
curl -I -Ls --http1.1 https://yahoo.com | grep -q \"HTTP/1.1 403 Forbidden\"'
environ: ['development', 'staging', 'prod']
app:
- 'catalog-admin'
Expand Down

0 comments on commit 536a0c4

Please sign in to comment.