Add event_source_url tests #16
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: Param builder Ruby CI | |
| on: | |
| push: | |
| paths: | |
| - 'ruby/**' | |
| tags-ignore: | |
| - 'v*' # Ignores all tag pushes | |
| branches: | |
| - '**' | |
| pull_request: | |
| paths: | |
| - 'ruby/**' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ruby/capi_param_builder | |
| strategy: | |
| matrix: | |
| ruby-versions: [ '3.0', '3.2', '3.3'] | |
| name: CI Test on Ruby with version ${{ matrix.ruby-versions }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby-versions }} | |
| - name: Install minitest | |
| run: gem install minitest | |
| - name: Run unit tests | |
| run: | | |
| ruby -Ilib:test test/test_param_builder.rb | |
| ruby -Ilib:test test/test_request_context_adaptor.rb | |
| ruby -Ilib:test test/test_process_request_from_context.rb |