Add CI environment configuration

This commit is contained in:
Alexander Gorelyshev
2025-12-04 13:36:53 +04:00
parent b2174a8c77
commit da27eccbc2
3 changed files with 18 additions and 0 deletions

11
ci/conda.yml Normal file
View File

@@ -0,0 +1,11 @@
---
name: ansible-mount-device
channels:
- conda-forge
dependencies:
- python~=3.12
- pip>=22.2
- actionlint
- pip:
- -r requirements.txt
- -r requirements.ci.txt

6
ci/requirements.ci.txt Normal file
View File

@@ -0,0 +1,6 @@
ansible-lint
molecule==24.12.0
molecule-plugins[docker]
docker~=7.1.0
requests==2.31.0 # pinned to the latest version not breaking Docker SDK
yamllint

1
ci/requirements.txt Normal file
View File

@@ -0,0 +1 @@
ansible-core==2.18.11