Sha256: 1a095dada6edd4c7a2dc645a55e7de13ff312f2bc9e28c550e4dba4a751645e6
Contents?: true
Size: 1 KB
Versions: 1
Compression:
Stored size: 1 KB
Contents
--- name: test on: push jobs: rspec: name: "ruby-${{ matrix.ruby }}" runs-on: ubuntu-22.04 strategy: fail-fast: false matrix: ruby: - "3.3" - "3.2" - "3.1" - "3.0" - "2.7" env: BUNDLE_WITHOUT: development steps: - uses: actions/checkout@master - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true env: BUNDLE_JOBS: 4 BUNDLE_RETRY: 3 - run: | bundle exec rspec --color --format documentation rubocop: name: rubocop runs-on: ubuntu-22.04 env: BUNDLE_WITHOUT: development steps: - uses: actions/checkout@master - uses: ruby/setup-ruby@v1 with: ruby-version: "3.3" bundler-cache: true env: BUNDLE_WITHOUT: development BUNDLE_JOBS: 4 BUNDLE_RETRY: 3 - run: bundle exec rubocop --parallel --fail-level E
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
uuid4-1.4.0 | .github/workflows/test.yml |