chore(deps): Update astral-sh/setup-uv action to v7 #139
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: Destination Plugin SQLite-Python Workflow | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| paths: | |
| - "plugins/destination/sqlite-python/**" | |
| - ".github/workflows/dest_sqlite_python.yml" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "plugins/destination/sqlite-python/**" | |
| - ".github/workflows/dest_sqlite_python.yml" | |
| permissions: | |
| contents: read | |
| jobs: | |
| plugins-destination-sqlite-python: | |
| timeout-minutes: 30 | |
| name: "plugins/destination/sqlite-python" | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./plugins/destination/sqlite-python | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7 | |
| - name: Set up Python | |
| uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6 | |
| with: | |
| python-version: '3.11' | |
| - name: Install dependencies | |
| run: uv sync | |
| - name: Check formatting | |
| run: make fmt-check | |
| - | |
| # Required for the package command tests to work | |
| name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3 | |
| - name: Run tests | |
| run: make test | |