This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
chore(deps): bump coverage from 7.0.5 to 7.4.1 in /resources/scripts/pytest_otel #355
Workflow file for this run
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: pytest_otel-build-test | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- 'resources/scripts/pytest_otel/**' | |
- '.github/workflows/pytest_otel.yml' | |
push: | |
branches: main | |
paths: | |
- 'resources/scripts/pytest_otel/**' | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
name: Run linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint | |
run: make -C resources/scripts/pytest_otel lint | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: test | |
run: make -C resources/scripts/pytest_otel test | |
- name: it-test | |
run: make -C resources/scripts/pytest_otel it-test | |
- uses: actions/upload-artifact@v2 # upload test results | |
if: success() || failure() # run this step even if previous step failed | |
with: | |
name: test-results | |
path: resources/scripts/pytest_otel/**/junit-*.xml |