[AWSCORE-221] Remove enumerated IAM permissions from aws_quickstart template #76
Workflow file for this run
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: Python tests | |
| on: | |
| push: | |
| paths: | |
| - "**.py" | |
| pull_request: | |
| paths: | |
| - "**.py" | |
| jobs: | |
| agentless_api_call_test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - name: Run Agentless API Call unit tests | |
| run: | | |
| cd aws_quickstart | |
| python -B -S -m unittest datadog_agentless_api_call_test.py -v |