benchkit: add the measurement harness as a second module #730
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 Test | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| platform: [ubuntu-latest, macos-latest] | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-go@v7 | |
| with: | |
| go-version-file: "go.mod" | |
| cache: true | |
| - uses: arduino/setup-protoc@v3.0.0 | |
| with: | |
| version: "32.1" | |
| include-pre-releases: true | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Install tools | |
| run: | | |
| make tools | |
| make installgorums | |
| - name: Run Tests | |
| run: make test |