Build(deps): Bump keystoneauth1 from 5.6.0 to 5.8.0 (#1806) #5549
This file contains 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: bandersnatch_ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: bandersnatch CI python ${{ matrix.python-version }} on ${{matrix.os}} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ["3.11", "3.12"] | |
os: [macOS-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install latest pip, setuptools + tox | |
run: | | |
python -m pip install --upgrade pip setuptools tox | |
- name: Install base bandersnatch requirements | |
run: | | |
python -m pip install -r requirements.txt | |
- name: Run Unittests | |
env: | |
TOXENV: py3 | |
os: ${{ matrix.os }} | |
run: | | |
python test_runner.py | |
- name: Upload coverage to Codecov | |
# If pushed / is a pull request against main repo. | |
if: (github.event_name == 'push' && github.repository == 'pypa/bandersnatch') || (github.event.pull_request.base.repo.full_name == 'pypa/bandersnatch') | |
uses: codecov/codecov-action@v4 | |
env: | |
OS: ${{ matrix.os }} | |
PYTHON: ${{ matrix.python-version }} | |
with: | |
env_vars: OS,PYTHON | |
files: coverage.xml | |
- name: Run Integration Test | |
env: | |
TOXENV: INTEGRATION | |
run: | | |
python -m pip install . | |
python test_runner.py | |
- name: Run Integration Test (uvloop) | |
if: matrix.os != 'windows-latest' | |
env: | |
TOXENV: INTEGRATION | |
run: | | |
python -m pip install .[uvloop] | |
python test_runner.py |