Rename start_time to server_start_time for clarity and update related… #126
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: integration | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| integration: | |
| name: integration | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| ruby: [ '3.2.2', '3.2.3', '3.3.0', '3.3.1', '3.4.0', '3.4.2', '3.4.3', '3.4.4' ] | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - uses: ruby/setup-ruby@13e7a03dc3ac6c3798f4570bfead2aed4d96abfb # [email protected] | |
| with: | |
| bundler-cache: true | |
| ruby-version: ${{ matrix.ruby }} | |
| - name: bootstrap | |
| run: script/bootstrap | |
| - name: integration | |
| run: script/integration |