Skip to content

Adding tags to the homebrew tasks main.yml #276

Adding tags to the homebrew tasks main.yml

Adding tags to the homebrew tasks main.yml #276

Workflow file for this run

---
name: CI
'on':
pull_request:
push:
branches:
- master
schedule:
- cron: "0 5 * * 0"
defaults:
run:
working-directory: ansible_collections/geerlingguy/mac
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v2
with:
path: ansible_collections/geerlingguy/mac
- name: Set up Python 3.
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install test dependencies.
run: pip3 install yamllint ansible-core ansible-lint
- name: Lint code.
run: |
yamllint .
ansible-lint
integration:
name: Integration
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v2
with:
path: ansible_collections/geerlingguy/mac
- name: Uninstall GitHub Actions' built-in Homebrew.
run: tests/uninstall-homebrew.sh
- name: Uninstall GitHub Actions' built-in browser installs.
run: |
sudo rm -rf /Applications/Firefox.app
sudo rm -rf /Applications/Google\ Chrome.app
- name: Install test dependencies.
run: |
sudo pip3 install --upgrade pip
sudo pip3 install ansible-core
- name: Set up the test environment.
run: |
cp tests/ansible.cfg ./ansible.cfg
cp tests/inventory ./inventory
ansible-galaxy collection install community.general
ansible-galaxy role install elliotweiser.osx-command-line-tools
- name: Test the playbook's syntax.
run: ansible-playbook tests/test.yml --syntax-check
- name: Test the playbook.
run: ansible-playbook tests/test.yml
env:
ANSIBLE_FORCE_COLOR: '1'
- name: Idempotence check.
run: |
idempotence=$(mktemp)
ansible-playbook tests/test.yml | tee -a ${idempotence}
tail ${idempotence} | grep -q 'changed=0.*failed=0' && (echo 'Idempotence test: pass' && exit 0) || (echo 'Idempotence test: fail' && exit 1)
env:
ANSIBLE_FORCE_COLOR: '1'