[Integration][Dynatrace] Add Teams Kind and Create Relation Between SLO and Entities #9293
Workflow file for this run
This file contains 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: Lint | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
detect-changes: | |
uses: ./.github/workflows/detect-changes-matrix.yml | |
lint: | |
name: ${{ matrix.folder == '.' && '🌊 Ocean Core' || format('🚢 {0}', matrix.folder) }} | |
needs: detect-changes | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 5 | |
matrix: | |
folder: ${{ fromJson(needs.detect-changes.outputs.matrix) }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Install poetry | |
run: pipx install 'poetry>=1.0.0,<2.0.0' | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
cache: 'poetry' | |
- name: Install dependencies | |
working-directory: ${{ matrix.folder != '.' && format('integrations/{0}', matrix.folder) || '.' }} | |
run: | | |
make install | |
- name: Lint | |
working-directory: ${{ matrix.folder != '.' && format('integrations/{0}', matrix.folder) || '.' }} | |
run: | | |
make lint |