Skip to content

Commit

Permalink
add requirements for molecule ci-job
Browse files Browse the repository at this point in the history
  • Loading branch information
acteru committed Nov 16, 2023
1 parent 589a0bb commit 8aa6b45
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ jobs:
name: Molecule
runs-on: self-hosted
steps:
- name: Run Molecule tests
- name: Check out the codebase
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install dependencies.
run: pip3 install yamllint ansible-lint ansible "molecule[lint,docker]"
- name: Run molecule
run: molecule test -s get_xml_tag

0 comments on commit 8aa6b45

Please sign in to comment.