fix typo #1
This file contains hidden or 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
| name: Test ansible | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: sudo apt-get update | |
| - run: sudo apt-get install -y pip podman ansible | |
| - run: sudo pip install molecule molecule-podman | |
| - name: build and install this collection | |
| run: sudo ansible-galaxy collection install . | |
| - name: run ansible molecule tests | |
| working-directory: ./extensions | |
| run: sudo molecule test |