[Integration][ADO] Added Support for boards and columns #5659
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: | |
matrix: | |
folder: ${{ fromJson(needs.detect-changes.outputs.matrix) }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
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 |