refactor: enhance Yupp class API key retrieval and improve cookie loa… #3157
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: Unittest | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| push: | |
| branches: | |
| - 'main' | |
| jobs: | |
| build: | |
| name: Build unittest | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python 3.8 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.8" | |
| cache: 'pip' | |
| - name: Install min requirements | |
| run: pip install -r requirements-min.txt | |
| - name: Run tests | |
| run: python -m etc.unittest | |
| - name: Set up Python 3.14 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| cache: 'pip' | |
| - name: Install requirements | |
| run: | | |
| pip install -r requirements.txt | |
| - name: Run tests | |
| run: python -m etc.unittest | |
| - name: Save PR number | |
| env: | |
| PR_NUMBER: ${{ github.event.number }} | |
| run: | | |
| mkdir -p ./pr | |
| echo $PR_NUMBER > ./pr/pr_number | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| name: pr_number | |
| path: pr/ |