We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 15443b2 + 2abd22e commit 8419679Copy full SHA for 8419679
.github/workflows/egress_check.yml
@@ -16,8 +16,9 @@ jobs:
16
max-parallel: 2
17
matrix:
18
command:
19
- - 'GoodDomainTest || curl -I -L --http1.1 https://gsa.gov | grep \"HTTP/1.1 200 OK\"'
20
- - 'BadDomainTest || curl -I -L --http1.1 https://yahoo.com | grep \"HTTP/1.1 403 Forbidden\"'
+ - 'HTTP403Test || curl -I -L --http1.1 http://gsa.gov | grep \"HTTP/1.1 403 Forbidden\"'
+ - 'GoodDomain200Test || python -c \"import requests,sys; sys.exit(requests.get(''https://gsa.gov'').status_code!=200)\"'
21
+ - 'BadDomain403Test || curl -I -L --http1.1 https://yahoo.com | grep \"HTTP/1.1 403 Forbidden\"'
22
environ: ['development', 'staging', 'prod']
23
app:
24
- 'catalog-admin'
0 commit comments