Skip to content

chore(deps): bump the opentelemetry group across 1 directory with 3 updates #116

chore(deps): bump the opentelemetry group across 1 directory with 3 updates

chore(deps): bump the opentelemetry group across 1 directory with 3 updates #116

Workflow file for this run

---
## continuous integration workflow
name: ci
on:
pull_request:
permissions:
contents: read
jobs:
lint:
name: Run linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: false
ref: ${{ github.sha || 'main' }}
- uses: actions/setup-python@v5
with:
python-version-file: .python-version
cache-dependency-path: pyproject.toml
- name: Lint
run: make lint
test:
runs-on: ubuntu-latest
needs: lint
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: false
ref: ${{ github.sha || 'main' }}
- uses: actions/setup-python@v5
with:
python-version-file: .python-version
cache-dependency-path: pyproject.toml
- name: test
run: make test
- name: it-test
run: make it-test
- uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: test-results
path: "**/junit-*.xml"