diff --git a/.github/workflows/collection.yml b/.github/workflows/collection.yml index da7561bc..e6f5eaa7 100644 --- a/.github/workflows/collection.yml +++ b/.github/workflows/collection.yml @@ -164,10 +164,30 @@ jobs: - name: Install requirements run: pip3.11 install -r requirements/requirements_dev.txt ansible-core + + - name: Check if Gateway is accessible + run: | + curl -k https://localhost:8000 + continue-on-error: true + + - name: Check if Gateway is accessible (http) + run: | + curl http://localhost:8000 + continue-on-error: true - uses: actions/checkout@v3 with: path: ansible-platform + + - name: Check if Gateway is accessible + run: | + curl -k https://localhost:8000 + continue-on-error: true + + - name: Check if Gateway is accessible (http) + run: | + curl http://localhost:8000 + continue-on-error: true - name: Perform completeness tests run: cd ansible-platform && make collection-test-completeness diff --git a/README.md b/README.md index 745b04b4..a0af0124 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ ## Description + This collection contains modules that can be used to automate the creation of resources on an install of Ansible Automation Platform.