add authentication, selfsigned cert,proxy support #37
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: "Gemirro tests" | |
on: [push, pull_request] | |
jobs: | |
rspec: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: [ '2.5', '2.6', '2.7' ] | |
name: Rspec on Ruby ${{ matrix.ruby }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- run: | | |
gem install bundler | |
bundle install --jobs=3 --retry=3 | |
bundle exec rspec | |
rubocop: | |
runs-on: ubuntu-latest | |
name: Run rubocop | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-ruby@v1 | |
with: | |
ruby-version: "2.7" | |
- run: | | |
gem install bundler | |
bundle install --jobs=3 --retry=3 | |
bundle exec rubocop |