diff --git a/.gitea/workflows/demo.yml b/.gitea/workflows/demo.yml index a0bb8fa..293def0 100644 --- a/.gitea/workflows/demo.yml +++ b/.gitea/workflows/demo.yml @@ -7,27 +7,23 @@ jobs: env: ANSIBLE_ROLES_PATH: '/workspace/seasharp/ansible-role_podman-host' runs-on: ubuntu-latest -# container: -# images: rockylinux/rockylinux:9 + container: + images: rockylinux/rockylinux:9 steps: - name: Check environment variables run: | env - - name: Install missing modules + - name: Check out repository code + uses: actions/checkout@v4 + with: + path: 'podman-host' + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.12' + - name: Set up molecule + run: pip install molecule + - name: Molecule test run: | - apt-get update - apt-cache search ansible -# - name: Check out repository code -# uses: actions/checkout@v4 -# with: -# path: 'podman-host' -# - name: Set up Python -# uses: actions/setup-python@v5 -# with: -# python-version: '3.12' -# - name: Set up molecule -# run: pip install molecule -# - name: Molecule test -# run: | -# cd podman-host/extensions -# molecule test + cd podman-host/extensions + molecule test