Update User-Agent header in APISession #6
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 | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: [3.11,3.12] | |
| poetry-version: [2.1.1] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install poetry ${{ matrix.poetry-version }} | |
| run: | | |
| python -m ensurepip | |
| python -m pip install --upgrade pip | |
| python -m pip install poetry==${{ matrix.poetry-version }} | |
| - name: Install dependencies | |
| shell: bash | |
| run: python -m poetry install | |
| - name: Test with pytest | |
| env: | |
| USERNAME: ${{ secrets.PICNIC_USERNAME }} | |
| PASSWORD: ${{ secrets.PICNIC_PASSWORD }} | |
| COUNTRY_CODE: ${{ secrets.PICNIC_COUNTRY_CODE }} | |
| run: | | |
| python -m poetry run python -m pytest -v tests | |
| - name: Lint with ruff | |
| run: | | |
| python -m poetry run ruff check | |