Build Failure - Container Solution - Rabbitmq (#3061) #7566
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: ci-tests | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Upgraded to v4 | |
| - uses: actions/checkout@v4 | |
| # Upgraded to v5 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip jinja2 pyyaml | |
| - name: Install Chef Workstation | |
| uses: actionshub/chef-install@main | |
| with: | |
| project: chef-workstation | |
| accept_chef_license: true | |
| - name: Run tests | |
| run: make python-test vm-generate-triggers |