Bump github.com/goccy/go-yaml from 1.13.5 to 1.13.6 #653
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: Integration test | |
on: | |
pull_request: | |
jobs: | |
build: | |
name: Run example | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
#- macos-latest | |
#- macos-latest-large | |
#- windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run Simple Example | |
uses: ./ | |
with: | |
entrypoint: example/simple/entrypoint.sh | |
- name: Run Stream Example | |
uses: ./ | |
with: | |
entrypoint: example/stream/entrypoint.sh | |
- name: Run WKT Example | |
uses: ./ | |
with: | |
entrypoint: example/well_known_types/entrypoint.sh | |
- name: Run Multi Package Example | |
uses: ./ | |
with: | |
entrypoint: example/multi-package/entrypoint.sh | |
- name: Run Multi Files Example | |
uses: ./ | |
with: | |
entrypoint: example/multi-files/entrypoint.sh | |
- name: Run one-of Example | |
uses: ./ | |
with: | |
entrypoint: example/one-of/entrypoint.sh | |
- name: Run stub subfolders example | |
uses: ./ | |
with: | |
entrypoint: example/stub-subfolders/entrypoint.sh | |
- name: Run microservice example | |
uses: ./ | |
with: | |
entrypoint: example/ms/entrypoint.sh | |
- name: Run microservice example (custom ports) | |
uses: ./ | |
env: | |
GRPC_PORT: 5000 | |
HTTP_PORT: 6000 | |
with: | |
entrypoint: example/ms/entrypoint.sh | |
- name: Run strict mode example | |
uses: ./ | |
with: | |
entrypoint: example/strictmode/entrypoint.sh |