Sha256: 7b2bb04b0b40da6fbc4149c4a400ad175b0e7d73e6647b11985d9a45843fdba7
Contents?: true
Size: 718 Bytes
Versions: 3
Compression:
Stored size: 718 Bytes
Contents
name: CI on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2'] steps: - uses: actions/checkout@v3 - name: Set up Ruby ${{ matrix.ruby-version }} uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # 'bundle install' and cache - name: Run specs run: | bundle exec rspec rubocop: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: 3.2 bundler-cache: true # 'bundle install' and cache - run: bundle exec rubocop
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
omniauth-salesforce-modern-1.1.3 | .github/workflows/ci.yml |
omniauth-salesforce-modern-1.1.2 | .github/workflows/ci.yml |
omniauth-salesforce-modern-1.1.1 | .github/workflows/ci.yml |