Sha256: 4a90fba38bcae44ffbced25ec8de8cc9e3ed48cd1046af65f31ae65daf59f05e
Contents?: true
Size: 1.53 KB
Versions: 1
Compression:
Stored size: 1.53 KB
Contents
name: CI on: push: branches: [ main ] pull_request: branches: [ main ] jobs: appraisal: name: Ruby ${{ matrix.ruby-version }} / Rails ${{ matrix.activesupport-version }} runs-on: ubuntu-latest strategy: matrix: ruby-version: ['2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3'] activesupport-version: - activesupport_5.2 - activesupport_6.0 - activesupport_6.1 - activesupport_7.0 - activesupport_7.1 exclude: - ruby-version: '2.5' activesupport-version: activesupport_7.0 - ruby-version: '2.6' activesupport-version: activesupport_7.0 - ruby-version: '2.5' activesupport-version: activesupport_7.1 - ruby-version: '2.6' activesupport-version: activesupport_7.1 fail-fast: false env: BUNDLE_GEMFILE: gemfiles/${{ matrix.activesupport-version }}.gemfile steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: bundler-cache: true ruby-version: ${{ matrix.ruby-version }} - name: Install dependencies run: bundle install - name: Run the tests run: bundle exec rake lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: bundler-cache: true ruby-version: "3.3" - name: Install dependencies run: bundle install - name: Run the tests run: bundle exec standardrb
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
csvlint-1.4.0 | .github/workflows/push.yml |