Bump dotnet/sdk from 8.0.100-1-bookworm-slim to 8.0.101-bookworm-slim in /docker #383
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: format native | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
merge_group: | |
workflow_dispatch: | |
jobs: | |
check-native-format: | |
strategy: | |
fail-fast: false | |
matrix: | |
machine: [ windows-2022, ubuntu-20.04, macos-11 ] | |
runs-on: ${{ matrix.machine }} | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- name: Install Clang tools | |
shell: bash | |
run: ./scripts/download-clang-tools.sh | |
- name: Format native code | |
shell: bash | |
run: ./scripts/format-native.sh | |
check-native-headers: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- uses: actions/setup-go@v5.0.0 | |
with: | |
go-version: '1.20.1' | |
- name: Verify all native files have license headers | |
shell: bash | |
run: | | |
go install github.com/google/addlicense@v1.1.1 | |
addlicense -v -y "" -l "apache" -c "The OpenTelemetry Authors" -s=only -ignore **/lib/** src/OpenTelemetry.AutoInstrumentation.Native/ | |
git status | |
git diff | |
test -z "$(git status --porcelain)" |