fix the failing test in TOD for Ansible_linode (#667) #13
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
| on: | |
| workflow_dispatch: null | |
| push: | |
| pull_request: | |
| name: Run Unit test | |
| jobs: | |
| run-tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [ '3.9','3.10','3.11', '3.12' ] | |
| defaults: | |
| run: | |
| working-directory: .ansible/collections/ansible_collections/linode/cloud | |
| steps: | |
| - name: checkout repo | |
| uses: actions/checkout@v4 | |
| with: | |
| path: .ansible/collections/ansible_collections/linode/cloud | |
| - name: setup python 3 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: install dependencies | |
| run: make deps | |
| - name: Run unit tests | |
| run: | | |
| make test-unit |