Bump version #22
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: Run test suite | |
| on: [push] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false # Tests suites are independent | |
| matrix: | |
| suite: | |
| - test_deployment | |
| - test_provisioning | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.x" # Latest | |
| - name: Install test dependencies | |
| run: | | |
| sudo apt-get remove -y containerd.io | |
| sudo apt-get install -y docker.io | |
| pip install -r requirements_test.txt | |
| - name: Run the test suite | |
| run: | | |
| molecule test -s ${{ matrix.suite }} |