Sha256: fbcca30509a500d40c14b6caed7fdc184e9edc33ecf5b0cd74a4453e7b2b8298
Contents?: true
Size: 1.15 KB
Versions: 2
Compression:
Stored size: 1.15 KB
Contents
name: CI on: push: branches: [master] pull_request: branches: [master] workflow_dispatch: jobs: continuous_integration_build: continue-on-error: true strategy: fail-fast: false matrix: ruby: [2.3, 2.7, 3.0] operating-system: [ubuntu-latest] include: - ruby: head operating-system: ubuntu-latest - ruby: truffleruby-head operating-system: ubuntu-latest - ruby: 2.7 operating-system: windows-latest - ruby: jruby-head operating-system: windows-latest name: Ruby ${{ matrix.ruby }} on ${{ matrix.operating-system }} runs-on: ${{ matrix.operating-system }} env: JAVA_OPTS: -Djdk.io.File.enableADS=true steps: - name: Checkout Code uses: actions/checkout@v2 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Run Build run: bundle exec rake default - name: Test Gem run: bundle exec rake test:gem
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
git-1.13.0 | .github/workflows/continuous_integration.yml |
git-1.12.0 | .github/workflows/continuous_integration.yml |