mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 02:00:31 -07:00
* Add tests for Ansible core 2.17 (devel is 2.18 today) * Drop tests for Ansible core 2.14 and add 2.17 * Cut duplicate exclude * Add back python 3.8 and 3.9 for stable2.15 * Bump action to prevent deprecation warnings * Cut python 3.9 for devel in roles tests * Attempt to fix GHA line folding * fix typo * Bump ubuntu Latest ansible-test doesn't work with old ubuntu. See here for more info: https://github.com/ansible-collections/collection_template/blob/main/.github/workflows/ansible-test.yml#L83-L91 * fix docker_image var assignation * fix yamllint false positive * Attempt to fix docker_image_multiline assignation * Fix empty var due to scope of each command * Attempt to fix docker_image assignation * fix error "vars should be dict" * Document URL of the repository for the action ansible-test-gh-action * Disable role tests * Document ansible-core version tested * Cut ansible-core 2.14 from testing documentation
21 lines
585 B
YAML
21 lines
585 B
YAML
---
|
|
name: Docker Image CI my57-py38-mysqlclient201
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
push:
|
|
paths:
|
|
- 'test-containers/my57-py38-mysqlclient201/**'
|
|
- '.github/workflows/docker-image-my57-py38-mysqlclient201.yml'
|
|
- '.github/workflows/build-docker-image.yml'
|
|
branches-ignore:
|
|
- stable-*
|
|
|
|
jobs:
|
|
|
|
call-workflow-passing-data:
|
|
uses: ./.github/workflows/build-docker-image.yml
|
|
secrets: inherit
|
|
with:
|
|
registry: ghcr.io
|
|
image_name: test-container-my57-py38-mysqlclient201
|
|
context: test-containers/my57-py38-mysqlclient201
|