Sha256: ecdc3c019fcdc37b4adcb2cb51929dd368ebe38c52856b0a257f361ba80c68b1
Contents?: true
Size: 689 Bytes
Versions: 2
Compression:
Stored size: 689 Bytes
Contents
name: "Ruby CI" on: push: branches: ["master"] pull_request: branches: ["master"] jobs: test: strategy: fail-fast: false matrix: ruby: ['3.2', '3.3'] gemfile: [ "6.1", "7.0", "7.1" ] runs-on: ubuntu-latest env: BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile steps: - name: Checkout code uses: actions/checkout@v4 - name: Install Ruby and gems uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Run tests run: bin/rake
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
command_model-2.1.1 | .github/workflows/ci.yml |
command_model-2.1.0 | .github/workflows/ci.yml |