Add mTLS sample. #42
Workflow file for this run
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: Continuous Integration | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - "releases/*" | |
| jobs: | |
| build-lint-test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-13, macos-latest] | |
| # Earliest and latest supported | |
| rubyVersion: ["3.2", "3.4"] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Setup Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.rubyVersion }} | |
| - name: Install bundle | |
| run: bundle install | |
| - name: Lint and test | |
| run: bundle exec rake TESTOPTS="--verbose" | |
| - name: Type check Sorbet sample | |
| working-directory: sorbet_generic | |
| run: | | |
| bundle install | |
| bundle exec srb tc |