chore(deps): bump types-pytz from 2025.2.0.20251108 to 2026.1.1.20260304 #4410
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: PR - Run All Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - 'main' | |
| - 'feat/rfc' | |
| paths: | |
| - 'client/**' | |
| - 'ietf/**' | |
| - 'playwright/**' | |
| - 'requirements.txt' | |
| - 'package.json' | |
| jobs: | |
| # ----------------------------------------------------------------- | |
| # PREPARE | |
| # ----------------------------------------------------------------- | |
| prepare: | |
| name: Prepare | |
| runs-on: ubuntu-latest | |
| outputs: | |
| base_image_version: ${{ steps.baseimgversion.outputs.base_image_version }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| fetch-tags: false | |
| - name: Get Base Image Target Version | |
| id: baseimgversion | |
| run: | | |
| echo "base_image_version=$(sed -n '1p' dev/build/TARGET_BASE)" >> $GITHUB_OUTPUT | |
| # ----------------------------------------------------------------- | |
| # TESTS | |
| # ----------------------------------------------------------------- | |
| tests: | |
| name: Run Tests | |
| uses: ./.github/workflows/tests.yml | |
| needs: [prepare] | |
| with: | |
| ignoreLowerCoverage: false | |
| skipSelenium: true | |
| targetBaseVersion: ${{ needs.prepare.outputs.base_image_version }} |