Sha256: 0a88638b95157523509727b91e9d4b0cd101679a32d9b8dfe33ab4066ac23a68
Contents?: true
Size: 529 Bytes
Versions: 1
Compression:
Stored size: 529 Bytes
Contents
name: Ruby on: [push] jobs: build: timeout-minutes: 10 runs-on: ubuntu-latest strategy: matrix: ruby: - "2.7" - "3.0" - "3.1" name: Ruby ${{ matrix.ruby }} test steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: false - name: Install dependencies run: bundle install - name: Run Tests run: | bundle exec rake test
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cased-ruby-0.8.0 | .github/workflows/ruby.yml |