Sha256: e74ab503e41913f2070b2b9f21a526b7f7681abdeab9d226dcc5aa778f3367cd
Contents?: true
Size: 619 Bytes
Versions: 1
Compression:
Stored size: 619 Bytes
Contents
name: CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby-version: ['2.6', '2.7', '3.0'] faraday-version: ['~> 0.17.3', '~> 1.7'] env: FARADAY_VERSION: ${{ matrix.faraday-version }} steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Run tests run: bundle exec rake spec
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
acme-client-2.0.9 | .github/workflows/test.yml |