Sha256: 24176023f2c353ee1bbf084984c3560ef06366dd5fea2ae19ed443bcd59d91b3
Contents?: true
Size: 1.69 KB
Versions: 2
Compression:
Stored size: 1.69 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: [master] pull_request: branches: [master] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3'] steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Compile extension working-directory: ./ext/chess run: | ruby extconf.rb make - name: Run tests run: bundle exec rake test env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} # - name: Upload coverage report to Codecov # uses: codecov/codecov-action@v1 # with: # file: ./coverage/.resultset.json rubocop: runs-on: ubuntu-latest strategy: matrix: ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3'] steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Run Rubocop run: bundle exec rubocop
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
chess-0.3.6 | .github/workflows/ruby.yml |
chess-0.3.5 | .github/workflows/ruby.yml |