AMA: enable libcurl ODS upload (ENABLE_CURL_UPLOAD) in eastus2euap an… #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
| name: AzureMonitorAgent Tests | |
| on: | |
| push: | |
| branches: [master, main] | |
| paths: | |
| - 'AzureMonitorAgent/**' | |
| - 'LAD-AMA-Common/**' | |
| pull_request: | |
| branches: [master, main] | |
| paths: | |
| - 'AzureMonitorAgent/**' | |
| - 'LAD-AMA-Common/**' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ['3.9', '3.10', '3.11', '3.12'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Run AzureMonitorAgent tests | |
| working-directory: AzureMonitorAgent | |
| env: | |
| PYTHONPATH: ${{ github.workspace }}/LAD-AMA-Common | |
| run: python -m unittest discover -s tests -v |