Skip to content

add authentication, selfsigned cert,proxy support #37

add authentication, selfsigned cert,proxy support

add authentication, selfsigned cert,proxy support #37

Workflow file for this run

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