updating aep-lib-go #138
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: tests | |
| on: | |
| push: {} | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: 1.22.3 | |
| - name: Check out code | |
| uses: actions/checkout@v2 | |
| - name: "test: no change to generated files." | |
| run: | | |
| go install github.com/bufbuild/buf/cmd/[email protected] | |
| ./scripts/verify-goldens.sh | |
| - name: "test: example server function" | |
| run: | | |
| ./scripts/test_http_api.sh | |
| - name: run OAS api-linter | |
| run: | | |
| ./scripts/run-oas-linter.sh | |
| - name: run protobuf api-linter | |
| run: | | |
| ./scripts/run-proto-linter.sh |