Merge pull request #2585 from koic/bump_openssl_to_3_0_16_in_ruby_4_0… #1341
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: Test | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install bats | |
| run: git clone --depth 1 --branch v1.10.0 https://github.com/bats-core/bats-core.git bats | |
| - name: Run tests | |
| run: PATH="./bats/bin:$PATH" script/test |