Bump version of molecule action, update tox to use py38 and fix "path".
This commit is contained in:
parent
3f67049f38
commit
e996f5f87a
|
|
@ -17,11 +17,13 @@ jobs:
|
|||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: molecule
|
||||
uses: robertdebock/molecule-action@2.2.0
|
||||
with:
|
||||
entrypoint: /usr/local/bin/molecule
|
||||
args: lint
|
||||
path: {% raw %}"${{ github.repository }}"{% endraw %}
|
||||
|
||||
- name: molecule
|
||||
uses: robertdebock/molecule-action@2.3.4
|
||||
with:
|
||||
command: lint
|
||||
test:
|
||||
needs:
|
||||
- lint
|
||||
|
|
@ -49,7 +51,7 @@ jobs:
|
|||
- name: parse apparmor for mysql
|
||||
run: sudo apparmor_parser -R /etc/apparmor.d/usr.sbin.mysqld
|
||||
- name: molecule
|
||||
uses: robertdebock/molecule-action@2.2.0
|
||||
uses: robertdebock/molecule-action@2.3.4
|
||||
with:
|
||||
image: {% raw %}${{ matrix.config.image }}{% endraw %}
|
||||
|
||||
|
|
|
|||
|
|
@ -2,13 +2,13 @@
|
|||
[tox]
|
||||
minversion = 3.7
|
||||
{% if tox_versions is defined %}
|
||||
envlist = py{37}-ansible-{% raw %}{{% endraw %}{% for version in tox_versions %}{{ version }}{% if not loop.last %},{% endif %}{% endfor %}{% raw %}}{% endraw %}
|
||||
envlist = py{38}-ansible-{% raw %}{{% endraw %}{% for version in tox_versions %}{{ version }}{% if not loop.last %},{% endif %}{% endfor %}{% raw %}}{% endraw %}
|
||||
|
||||
{% else %}
|
||||
# Disabled "next" because of:
|
||||
# https://github.com/ansible-community/molecule/issues/2626.
|
||||
# envlist = py{37}-ansible-{previous,current,next}
|
||||
envlist = py{37}-ansible-{previous,current}
|
||||
# envlist = py{38}-ansible-{previous,current,next}
|
||||
envlist = py{38}-ansible-{previous,current}
|
||||
{% endif %}
|
||||
skipsdist = true
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue