chore(deps-dev): bump the all-deps group in /lib/python-sdk with 2 updates #436
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: "CI - Python SDK: Run Checks" | |
| on: | |
| pull_request: | |
| paths: | |
| - "lib/python-sdk/**" | |
| - ".github/workflows/ci-lib-pysdk.yml" | |
| defaults: | |
| run: | |
| working-directory: ./lib/python-sdk | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| - name: Install Poetry | |
| uses: Gr1N/setup-poetry@v9 | |
| - name: Install dependencies | |
| run: make install | |
| - name: Run checks | |
| run: make checks | |
| - name: Run tests | |
| run: make test | |
| - name: Build package | |
| run: make build |