Sha256: cfa1a5ae287df3829e9dbc7712931f314216186fab13e7853f73a38f0e51426f
Contents?: true
Size: 894 Bytes
Versions: 1
Compression:
Stored size: 894 Bytes
Contents
name: test on: [push, pull_request] jobs: ruby-versions: runs-on: ubuntu-latest outputs: versions: ${{ steps.versions.outputs.value }} steps: - id: versions run: | versions=$(curl -s 'https://cache.ruby-lang.org/pub/misc/ci_versions/cruby.json' | jq -c '. - ["2.7"]') echo "::set-output name=value::${versions}" test: needs: ruby-versions name: build (${{ matrix.ruby }} / ${{ matrix.os }}) strategy: matrix: ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }} 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 }} bundler-cache: true # 'bundle install' and cache gems - name: Run test run: bundle exec rake test
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
delegate-0.3.0 | .github/workflows/test.yml |