-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #364 from jacobdotcosta/fix-requirements-snowdrop-…
…cloud_infra-version fix: requiremrnts version for the snowdrop.cloud_infra
- Loading branch information
Showing
3 changed files
with
72 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
name: CI | ||
on: | ||
push: | ||
|
||
jobs: | ||
|
||
install-requirements: | ||
name: Test installation of the project requirements | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python: [ 3.11 ] | ||
steps: | ||
- name: Checkout project | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
cache: pip | ||
|
||
- name: Install python requirements | ||
run: | | ||
pip install -r requirements.txt | ||
pip install -r molecule/requirements.txt | ||
ansible-galaxy collection install -r collections/requirements.yml --upgrade | ||
- name: Print configuration versions | ||
run: | | ||
pip freeze | ||
ansible-galaxy collection list | ||
# - name: Run role tests | ||
# run: | | ||
# molecule test --scenario-name github | ||
|
||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters