diff --git a/.gitea/workflows/demo.yml b/.gitea/workflows/demo.yml index 8f98bee..91d56fc 100644 --- a/.gitea/workflows/demo.yml +++ b/.gitea/workflows/demo.yml @@ -8,18 +8,18 @@ jobs: # container: # images: rockylinux/rockylinux:9 steps: - - name: Check our environment variables + - name: Check out repository code + uses: actions/checkout@v4 + with: + path: podman-host + images: rockylinux/rockylinux:9 + - 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: | - env -# - name: Check out repository code -# uses: actions/checkout@v4 -# - 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 extensions -# molecule test + cd extensions + molecule test