chore(deps): update astral-sh/setup-uv action to v7.6.0 (#438) #535
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: Quality control checks | |
| on: | |
| push: | |
| branches: [main, "feat/**"] | |
| paths-ignore: | |
| - "**.md" # Do not need to run CI for markdown changes. | |
| pull_request: | |
| branches: [main, "feat/**"] | |
| paths-ignore: | |
| - "**.md" | |
| jobs: | |
| linux: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - uses: launchdarkly/gh-actions/actions/persistent-stores@persistent-stores-v0 | |
| with: | |
| redis: true | |
| consul: true | |
| dynamodb: true | |
| - uses: ./.github/actions/build | |
| - uses: ./.github/actions/build-docs | |
| - name: Run tests | |
| run: make test-all | |
| env: | |
| LD_SKIP_FLAKY_TESTS: true | |
| - name: Verify typehints | |
| run: make lint | |
| # | |
| # SDK contract tests | |
| # | |
| - name: install contract test dependencies | |
| run: make install-contract-tests-deps | |
| - name: start contract test service | |
| run: make start-contract-test-service-bg | |
| - name: Run contract tests v2 | |
| uses: launchdarkly/gh-actions/actions/contract-tests@contract-tests-v1 | |
| with: | |
| test_service_port: 9000 | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| stop_service: "false" | |
| enable_persistence_tests: "true" | |
| - name: Run contract tests v3 | |
| uses: launchdarkly/gh-actions/actions/contract-tests@contract-tests-v1 | |
| with: | |
| test_service_port: 9000 | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| version: v3.0.0-alpha.6 | |
| enable_persistence_tests: "true" | |
| windows: | |
| runs-on: windows-latest | |
| defaults: | |
| run: | |
| shell: powershell | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - uses: launchdarkly/gh-actions/actions/persistent-stores@persistent-stores-v0 | |
| with: | |
| redis: true | |
| consul: true | |
| dynamodb: true | |
| - name: Install requirements | |
| run: uv sync --all-extras | |
| - name: Run tests | |
| run: make test-all | |
| env: | |
| LD_SKIP_FLAKY_TESTS: true |