Add SetField method for the message & composite to support nested path #857
Workflow file for this run
This file contains hidden or 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: Go | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| name: Go Build | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| version: [stable, oldstable] | |
| steps: | |
| - name: Set up Go 1.x | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.version }} | |
| id: go | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v4 | |
| - name: Check | |
| if: runner.os == 'Linux' | |
| run: make check | |
| - name: Go Tests | |
| if: runner.os != 'Linux' | |
| run: go test ./... -count 1 -short | |
| - name: Upload Code Coverage | |
| if: runner.os == 'Linux' | |
| run: bash <(curl -s https://codecov.io/bash) |