fix: Fix matomo api client to support POST for authen in Matomo 5 #1755
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: init | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| jobs: | |
| run_init: | |
| name: tests dlt init compatibility | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| with: | |
| python-version: "3.9" | |
| - name: Install dependencies | |
| run: uv sync --only-group dltpure --only-group pytest | |
| - name: Run lint | |
| run: make lint-dlt-init |