Sha256: 6338724584c341f645922baa062809f37ffe1ae6ef452d05f7b4234b843a8123
Contents?: true
Size: 654 Bytes
Versions: 2
Compression:
Stored size: 654 Bytes
Contents
name: Test on: push: branches: - main pull_request: branches: - main jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby-version: [3.1, 3.2, 3.3] # Define the Ruby versions to test against steps: - name: Check out code uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} # Use the version defined in the matrix bundler-cache: true # Caches 'vendor/bundle' directory - name: Install dependencies run: bundle install - name: Run tests run: bundle exec rake spec
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ddy_remote_resource-1.3.4 | .github/workflows/ci.yml |
ddy_remote_resource-1.3.3 | .github/workflows/ci.yml |