setup ci with github actions #13
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: "Test (Ubuntu 22.04)" | |
on: | |
pull_request: | |
branches: | |
- "master" | |
push: | |
branches: | |
- "master" | |
jobs: | |
deploy: | |
runs-on: "ubuntu-22.04" | |
steps: | |
- uses: "actions/checkout@v4" | |
- name: "Print Ansible environment" | |
run: "ansible --version" | |
- name: "Install dependencies" | |
run: | | |
# fix ModuleNotFoundError: No module named 'requests' | |
/opt/pipx/venvs/ansible-core/bin/python -m pip install requests | |
ansible-galaxy install geerlingguy.docker | |
ansible-galaxy collection install community.general | |
ansible-galaxy collection install community.docker | |
ansible-galaxy collection install . -f | |
- name: "Deploy containers with smarthome role" | |
run: "ansible-playbook -i 127.0.0.1 .github/ansible/playbook-ci.yml -v -e \"ansible_user=${USER} ansible_connection=local\"" | |
- name: "Print docker processes" | |
run: "docker ps -a" | |
- name: "Print homeassistant logs" | |
run: "docker logs homeassistant" | |
- name: "Print zigbee2mqtt logs" | |
run: "docker logs zigbee2mqtt" | |
- name: "Print mosquitto logs" | |
run: "docker logs mosquitto" |