From e3814ac37a7ffd6441ade2d59ae123ce4fbe67b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20H=C3=B6sel?= Date: Mon, 24 Jan 2022 20:00:01 +0100 Subject: [PATCH] ci: use explicit role name for clone (#3) * ci: use explicit role name for clone * chore: bump ansible test versions --- .github/workflows/ci.yml | 5 +++++ README.md | 2 +- molecule/default/converge.yml | 2 +- tox.ini | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 356a6e3..f1fff3e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,6 +4,10 @@ on: pull_request: workflow_dispatch: +defaults: + run: + working-directory: postfix_nullclient + jobs: lint: name: "CI" @@ -13,6 +17,7 @@ jobs: uses: actions/checkout@v2 with: fetch-depth: 0 + path: postfix_nullclient - name: Set up Python 3 uses: actions/setup-python@v2 diff --git a/README.md b/README.md index b2ef6f1..15c9e0e 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Supports SSL/TLS auth and multi-instance operation as the primary instance. Requirements ------------ -- A recent Ansible version. This role supports the 3 most recent major Ansible releases. +- A recent Ansible version. This role supports the 2 most recent major Ansible releases. Older versions might still work, but are not supported - A host running: - Ubuntu 18.04 LTS or newer diff --git a/molecule/default/converge.yml b/molecule/default/converge.yml index 92f0bb8..931cb3f 100644 --- a/molecule/default/converge.yml +++ b/molecule/default/converge.yml @@ -4,7 +4,7 @@ tasks: - name: "Include postfix_nullclient" include_role: - name: "maxhoesel.postfix_nullclient" + name: "postfix_nullclient" vars: postfix_relayhost: mail.invalid.tld postfix_relayhost_username: test@invalid.tld diff --git a/tox.ini b/tox.ini index 06b0317..f3bb621 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,7 @@ requires = skipsdist = True [ansible] -ansible = 3,4,5 +ansible = 4,5 python = 3 [testenv]