Sha256: 25ecdcdb4f753ca749ae42e0c58108a31fc79f58a09dc80d998c851c7c0bcc17
Contents?: true
Size: 861 Bytes
Versions: 1
Compression:
Stored size: 861 Bytes
Contents
name: Ruby on: push: pull_request: workflow_dispatch: schedule: - cron: '11 24 * * 5' jobs: ruby-versions: uses: ruby/actions/.github/workflows/ruby_versions.yml@master with: engine: cruby-truffleruby min_version: 2.7 build: needs: ruby-versions name: build (${{ matrix.ruby }}) strategy: fail-fast: false matrix: ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Bundle install run: | bundle install - run: bundle exec typeprof --version - name: Run the test suite run: | bundle exec rake TESTOPT=-v if: ${{ !startsWith(matrix.ruby, 'truffle') }}
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
typeprof-0.21.5 | .github/workflows/main.yml |