Skip to content

fix: _set_status should not override existing span status (#3713) #82

fix: _set_status should not override existing span status (#3713)

fix: _set_status should not override existing span status (#3713) #82

Workflow file for this run

# Do not edit this file.
# This file is generated automatically by executing tox -e generate-workflows
name: CI
on:
push:
branches:
- 'main'
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
misc:
uses: ./.github/workflows/misc.yml
lint:
uses: ./.github/workflows/lint.yml
tests:
uses: ./.github/workflows/test.yml
check:
if: always()
needs:
- misc
- lint
- tests
runs-on: ubuntu-latest
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}