Sha256: 66f4c8e2d3049972d8f1f182a68bd69943eac9d9d6be6df0c2112caef9523dfa
Contents?: true
Size: 515 Bytes
Versions: 1
Compression:
Stored size: 515 Bytes
Contents
name: CI on: [push, pull_request] jobs: build: name: build (${{ matrix.ruby }} / ${{ matrix.os }}) strategy: matrix: ruby: [ 3.1, '3.0', 2.7, 2.6, 2.5, 2.4, head, truffleruby ] os: [ ubuntu-latest, macos-latest ] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - run: bundle install --jobs 4 --retry 3 - name: Run test run: rake test
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
uri-0.12.2 | .github/workflows/test.yml |