Only create a sibling activity when trace id, span id or trace state differ #15072
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: sanitycheck | |
on: | |
push: | |
branches: [ 'main*' ] | |
pull_request: | |
branches: [ 'main*' ] | |
jobs: | |
misspell: | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out code | |
uses: actions/checkout@v4 | |
- name: install misspell | |
run: | | |
curl -L -o ./install-misspell.sh https://git.io/misspell | |
sh ./install-misspell.sh | |
- name: run misspell | |
run: ./bin/misspell -error . | |
encoding: | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out code | |
uses: actions/checkout@v4 | |
- name: detect non-ASCII encoding and trailing space | |
run: python3 ./build/sanitycheck.py |