Skip to content

Integration-Test Execution #1

Integration-Test Execution

Integration-Test Execution #1

---
name: Integration-Test Execution
on: workflow_dispatch
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 1
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- name: Install dependencies
run: sudo apt install curl
shell: bash
- name: Starting Tests
run: curl -XPOST https://ci.ansibleguy.net/api/job/ansible-test-collection-opnsense?token=${{ secrets.CI_TOKEN_RW }}
shell: bash
- name: You can pull the current logs at this URL
run: >
echo "You can pull the current logs at this URL:"
echo " > https://ci.ansibleguy.net/api/job/ansible-test-collection-opnsense/tail?token=${{ secrets.CI_TOKEN_RO }}"