Httpcheck method incorrect in example #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events | |
push: | |
pull_request: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.10'] | |
ansible-version: ['2.14', '2.15', '2.16'] | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Checkout project | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache pip modules | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-pip | |
with: | |
path: | | |
~/.cache | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-python-${{ matrix.python-version }} | |
- name: Cache ansible setup | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-ansible | |
with: | |
path: | | |
~/work/ansible-pfsense/ansible-pfsense/ansible | |
key: build-${{ env.cache-name }}-ansible-${{ matrix.ansible-version }} | |
# Runs a set of commands using the runners shell | |
- name: Install ansible and deps | |
run: | | |
pip install ansible-core==${{ matrix.ansible-version }}.* dnspython parameterized pyyaml | |
ansible-galaxy collection install community.internal_test_tools | |
# Not currently shipping tests in releases | |
ansible-galaxy collection install git+https://github.com/pfsensible/core.git | |
- name: Run ansible tests | |
run: | | |
pwd | |
dir=$(pwd) | |
mkdir -p ~/.ansible/collections/ansible_collections/pfsensible | |
cd ~/.ansible/collections/ansible_collections/pfsensible | |
cp -al $dir haproxy | |
cd haproxy | |
ansible-test sanity --requirements --python ${{ matrix.python-version }} | |
ansible-test units --requirements --python ${{ matrix.python-version }} |