All checks were successful
Master branch: build & lint / build (push) Successful in 1m0s
Adds an action to perform some linting actions on ansible and the yaml files, both on push onto master and on pull requests Reviewed-on: #1
15 lines
612 B
YAML
15 lines
612 B
YAML
---
|
|
# Standard variables
|
|
os: "{{ ansible_system | lower }}"
|
|
# yamllint disable-line rule:line-length
|
|
arch: "{% if ansible_architecture == 'aarch64' %}arm64{% elif ansible_architecture == 'amd64' or ansible_architecture == 'x86_64' %}amd64{% elif ansible_architecture == 'armhf' %}armhf{% else %}{{ ansible_architecture }}{% endif %}"
|
|
|
|
# Docker stuff
|
|
docker_apt_ignore_key_error: false
|
|
docker_install_compose: true
|
|
docker_apt_arch: "{{ arch }}"
|
|
|
|
root_user:
|
|
default_root_keys:
|
|
- name: thomas-ed25519
|
|
key: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPrw78OSJACq5MFXHrhAr2bPpnTNxwLE85mzij8gKmCs thomas@thonkpad
|