Sha256: 7cd14166554159c8b8d6c2dc6a2f6e2798c968035b7a7c4643d171faa4405032
Contents?: true
Size: 775 Bytes
Versions: 3
Compression:
Stored size: 775 Bytes
Contents
name: tests on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: ruby: ['2.6', '2.7', '3.0', '3.1'] name: Ruby ${{ matrix.ruby }} steps: - uses: actions/checkout@v2 - name: Set up Ruby ${{ matrix.ruby }} uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - uses: actions/cache@v1 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | ${{ runner.os }}-gems- - name: Install dependencies run: | gem install bundler bundle config path vendor/bundle bundle install --jobs 4 --retry 3 - name: Run tests run: | bundle exec rake
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
shopify-money-1.1.2 | .github/workflows/tests.yml |
shopify-money-1.1.1 | .github/workflows/tests.yml |
shopify-money-1.1.0 | .github/workflows/tests.yml |