Sha256: 0985304f3516ec2b558c5a50ad75e62463217e4162edd1463580479a4d1630cd
Contents?: true
Size: 1.23 KB
Versions: 3
Compression:
Stored size: 1.23 KB
Contents
# This workflow uses actions that are not certified by GitHub. # They are provided by a third-party and are governed by # separate terms of service, privacy policy, and support # documentation. # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby name: Ruby on: push: branches: [ main ] pull_request: branches: [ main ] permissions: contents: read jobs: linters: strategy: matrix: ruby-version: ['3.0'] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true - run: bundle exec rubocop test: runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, macos-latest] ruby-version: ['2.7', '3.0', '3.1', '3.2'] steps: - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true - name: Run tests run: bundle exec rspec
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tabled-1.1.0 | .github/workflows/linters.yml |
tabled-1.0.0 | .github/workflows/linters.yml |
tabled-0.0.6 | .github/workflows/linters.yml |