Skip to content

Fix git pull error in core contrib test #2622

Fix git pull error in core contrib test

Fix git pull error in core contrib test #2622

Workflow file for this run

# Do not edit this file.
# This file is generated automatically by executing tox -e generate-workflows
name: Misc 0
on:
push:
branches-ignore:
- 'release/*'
pull_request:
env:
CORE_REPO_SHA: main
CONTRIB_REPO_SHA: main
PIP_EXISTS_ACTION: w
jobs:
spellcheck:
name: spellcheck
runs-on: ubuntu-latest
steps:
- name: Checkout repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install tox
run: pip install tox-uv
- name: Setup tox with retry
uses: nick-fields/retry@v2
with:
timeout_minutes: 10
max_attempts: 3
command: tox -e spellcheck --pkg-only
- name: Run tests
run: tox -e spellcheck --skip-pkg-install
docker-tests:
name: docker-tests
runs-on: ubuntu-latest
steps:
- name: Checkout repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install tox
run: pip install tox-uv
- name: Setup tox with retry
uses: nick-fields/retry@v2
with:
timeout_minutes: 10
max_attempts: 3
command: tox -e docker-tests --pkg-only
- name: Run tests
run: tox -e docker-tests --skip-pkg-install
docs:
name: docs
runs-on: ubuntu-latest
if: |
github.event.pull_request.user.login != 'opentelemetrybot' && github.event_name == 'pull_request'
steps:
- name: Checkout repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install tox
run: pip install tox-uv
- name: Setup tox with retry
uses: nick-fields/retry@v2
with:
timeout_minutes: 10
max_attempts: 3
command: tox -e docs --pkg-only
- name: Run tests
run: tox -e docs --skip-pkg-install
generate:
name: generate
runs-on: ubuntu-latest
steps:
- name: Checkout repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install tox
run: pip install tox-uv
- name: Setup tox with retry
uses: nick-fields/retry@v2
with:
timeout_minutes: 10
max_attempts: 3
command: tox -e generate --pkg-only
- name: Run tests
run: tox -e generate --skip-pkg-install
- name: Check workflows are up to date
run: git diff --exit-code || (echo 'Generated code is out of date, run "tox -e generate" and commit the changes in this PR.' && exit 1)
generate-workflows:
name: generate-workflows
runs-on: ubuntu-latest
if: |
!contains(github.event.pull_request.labels.*.name, 'Skip generate-workflows')
&& github.event.pull_request.user.login != 'opentelemetrybot' && github.event_name == 'pull_request'
steps:
- name: Checkout repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install tox
run: pip install tox-uv
- name: Setup tox with retry
uses: nick-fields/retry@v2
with:
timeout_minutes: 10
max_attempts: 3
command: tox -e generate-workflows --pkg-only
- name: Run tests
run: tox -e generate-workflows --skip-pkg-install
- name: Check workflows are up to date
run: git diff --exit-code || (echo 'Generated workflows are out of date, run "tox -e generate-workflows" and commit the changes in this PR.' && exit 1)
shellcheck:
name: shellcheck
runs-on: ubuntu-latest
steps:
- name: Checkout repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install tox
run: pip install tox-uv
- name: Setup tox with retry
uses: nick-fields/retry@v2
with:
timeout_minutes: 10
max_attempts: 3
command: tox -e shellcheck --pkg-only
- name: Run tests
run: tox -e shellcheck --skip-pkg-install
ruff:
name: ruff
runs-on: ubuntu-latest
steps:
- name: Checkout repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install tox
run: pip install tox-uv
- name: Setup tox with retry
uses: nick-fields/retry@v2
with:
timeout_minutes: 10
max_attempts: 3
command: tox -e ruff --pkg-only
- name: Run tests
run: tox -e ruff --skip-pkg-install
typecheck:
name: typecheck
runs-on: ubuntu-latest
steps:
- name: Checkout repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install tox
run: pip install tox-uv
- name: Setup tox with retry
uses: nick-fields/retry@v2
with:
timeout_minutes: 10
max_attempts: 3
command: tox -e typecheck --pkg-only
- name: Run tests
run: tox -e typecheck --skip-pkg-install