Initial commit
Some checks failed
/ ansible-docsmith (push) Successful in 34s
/ molecule (certbot) (push) Failing after 55s
/ molecule (galene) (push) Failing after 53s
/ molecule (golang) (push) Failing after 45s

Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
Julien Riou 2026-02-16 18:57:09 +01:00 committed by Julien Riou
commit 0a0341e6f9
Signed by: jriou
GPG key ID: 9A099EDA51316854
92 changed files with 3529 additions and 0 deletions

View file

@ -0,0 +1,15 @@
---
- name: Verify
hosts: molecule
vars:
golang_version: 1.25.4
tasks:
- name: Get version
ansible.builtin.command:
cmd: /usr/local/go/bin/go version
register: golang_version_cmd
- name: Compare versions
ansible.builtin.assert:
that:
- golang_version_cmd.stdout | regex_search('^go version go' + golang_version + ' linux/amd64') != ""